upgrade deps #128
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: Build and test | |
on: [push, pull_request] | |
jobs: | |
test: | |
if: | | |
!startsWith(github.ref, 'refs/tags') | |
name: Generate build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: "16" | |
- run: yarn install | |
- run: yarn run build chrome | |
- run: yarn run build firefox |