Use MSC4190 to provision devices for E2EE #123
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Static Analysis | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
# Global | |
# ================================================ | |
eslint: | |
name: 'ESLint' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version-file: .node-version | |
- run: yarn install | |
- run: yarn lint | |
# Node-specific | |
# ================================================ | |
build: | |
strategy: | |
matrix: | |
node: [ 18, 20 ] | |
name: 'Build Node ${{ matrix.node }}' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
- run: yarn install | |
- run: yarn build | |
- run: yarn build:examples | |
build-docs: | |
strategy: | |
matrix: | |
node: [ 18, 20 ] | |
name: 'Build Docs Node ${{ matrix.node }}' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
- run: yarn install | |
- run: yarn docs | |
tests: | |
strategy: | |
matrix: | |
node: [ 18, 20 ] | |
name: 'Tests Node ${{ matrix.node }}' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
- run: yarn install | |
- uses: nick-invision/retry@v2 | |
with: | |
max_attempts: 3 | |
timeout_minutes: 15 | |
command: yarn test |