Skip to content

Merge pull request #888 from privacy-scaling-explorations/chore/linte… #9

Merge pull request #888 from privacy-scaling-explorations/chore/linte…

Merge pull request #888 from privacy-scaling-explorations/chore/linte… #9

Workflow file for this run

name: Crypto
on:
push:
branches: [master, dev]
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"
- name: Update npm to latest version
run: npm install --global npm@latest
- name: Build
run: |
npm install
npm run bootstrap
npm run build
- name: Test
run: npm run test
working-directory: crypto