Bump browserify-sign from 4.2.1 to 4.2.2 #284
Workflow file for this run
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: CI | |
on: push | |
jobs: | |
build-module: | |
name: Build & test npm module | |
runs-on: ubuntu-latest | |
container: httptoolkit/act-build-base:v2.0.0 | |
defaults: | |
run: | |
working-directory: module | |
steps: | |
- uses: actions/checkout@v3 | |
# Install Node 14 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 14 | |
- run: npm ci | |
# Just check the code compiles | |
- run: npm run build | |
build-app: | |
name: Build & test app | |
runs-on: ubuntu-latest | |
container: httptoolkit/act-build-base:v2.0.0 | |
steps: | |
- uses: actions/checkout@v3 | |
# Install Node 14 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 14 | |
- run: npm install -g [email protected] | |
- name: App NPM CI | |
run: npm ci | |
- name: Module NPM CI | |
run: npm ci | |
working-directory: module | |
# Build & test | |
- run: npm test | |
env: | |
VERSION: ${{ github.sha }} | |
NODE_ENV: production | |
- run: npm run build | |
env: | |
VERSION: ${{ github.sha }} | |
NODE_ENV: production | |
SENTRY_DSN: ${{ secrets.SENTRY_DSN }} |