Skip to content

CI (pull_request on 22/merge) #13

CI (pull_request on 22/merge)

CI (pull_request on 22/merge) #13

Workflow file for this run

name: CI
run-name: ${{github.workflow}} (${{github.event_name}} on ${{ github.ref_name}})
on: [push, pull_request]
concurrency:
group: 'ci'
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: package.json
- name: Install dependencies
run: npm install
- name:
Verify the integrity of provenance attestations and registry signatures for installed
dependencies
run: npm audit signatures
- name: Build
run: npm run build --workspaces