chore(deps): bump ua-parser-js from 1.0.32 to 1.0.33 (#4) #19
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: 'Tests' | |
| on: | |
| push: | |
| branches: | |
| - master # runs on push to master, add more branches if you use them | |
| pull_request: | |
| branches: | |
| - '**' # runs on update to pull request on any branch | |
| jobs: | |
| test-matrix: | |
| name: test | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [windows-latest, ubuntu-latest, macos-latest] | |
| node: [16, 18] | |
| fail-fast: true | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| cache: 'yarn' | |
| node-version: ${{ matrix.node }} | |
| - run: yarn install | |
| - run: yarn run lint | |
| - run: yarn run build | |
| - run: yarn run test:node | |
| - run: yarn run test:chrome | |
| - run: yarn run test:firefox |