Bump ws from 6.2.1 to 6.2.4 in /example #105
Workflow file for this run
This file contains hidden or 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: Unit Test | |
| on: [push] | |
| concurrency: | |
| group: ${{ github.ref }}-${{ github.workflow }} | |
| cancel-in-progress: true | |
| jobs: | |
| unit: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node: [12, 14, 16, 17] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: ./.github/actions/setup-node | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - name: Test unit | |
| run: yarn test | |
| - name: Validate Browser Bundle | |
| run: yarn run test-browser-build | |
| - name: Validate translation | |
| run: yarn validate-translations |