Skip to content

Merge pull request #849 from privacy-scaling-explorations/docs/core #4

Merge pull request #849 from privacy-scaling-explorations/docs/core

Merge pull request #849 from privacy-scaling-explorations/docs/core #4

Workflow file for this run

name: Checks
on:
push:
branches: [master, dev]
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
check:
strategy:
fail-fast: false
matrix:
command: ["prettier", "lint:ts"]
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: ${{ matrix.command }}
run: npm run ${{ matrix.command }}