Skip to content

chore: bump braces from 3.0.2 to 3.0.3 (#96) #21

chore: bump braces from 3.0.2 to 3.0.3 (#96)

chore: bump braces from 3.0.2 to 3.0.3 (#96) #21

Workflow file for this run

name: Static checks
on: [ pull_request, push ]
jobs:
ci-static-checks:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout PR
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Setup NodeJS
uses: actions/[email protected]
with:
node-version-file: 'package.json'
- name: Install dependencies
run: npm ci
- name: Build code
run: npm run build
- name: Run linters
run: npm run lint
- name: Run unit tests
run: npm run test