Skip to content

docs: update CI/CD documentation to reflect current setup #21

docs: update CI/CD documentation to reflect current setup

docs: update CI/CD documentation to reflect current setup #21

Workflow file for this run

name: Lint & Test
on:
pull_request:
branches: [master]
permissions:
contents: read
jobs:
lint-and-test:
name: Lint & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: npm
- run: npm ci
- run: npm run lint
- run: npm test