This repository was archived by the owner on Aug 24, 2026. It is now read-only.
add deprecation note (#387) #109
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 |