Skip to content

fix: fail missing scope #340

fix: fail missing scope

fix: fail missing scope #340

Workflow file for this run

name: Continuous Integration
on:
pull_request:
branches:
- main
jobs:
build_test_lint:
name: Build, test, and lint
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: package.json
- name: Install dependencies
run: npm ci
- name: Test
run: npm run test