Skip to content

Bump browserify-sign from 4.2.1 to 4.2.2 #189

Bump browserify-sign from 4.2.1 to 4.2.2

Bump browserify-sign from 4.2.1 to 4.2.2 #189

Workflow file for this run

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