Bump browserify-sign from 4.2.1 to 4.2.2 #189
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: Node.js CI | |
on: | |
push: | |
branches: [staging] | |
pull_request: | |
branches: [staging] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: setup-chromedriver | |
uses: nanasess/[email protected] | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "16.13.x" | |
cache: "yarn" | |
- name: Install dependencies | |
run: yarn --immutable | |
- name: Build test version | |
run: yarn build:test | |
- name: Lint | |
run: yarn lint | |
- name: Test | |
run: yarn test | |
- name: Build dev version | |
if: github.ref != 'refs/heads/main' | |
run: yarn prebuild && yarn workspace client build:dev | |
- name: Build prod version | |
if: github.ref == 'refs/heads/main' | |
run: yarn prebuild && yarn workspace client build:prod |