Skip to content

fix: deploy directly from release workflow, no duplication #20

fix: deploy directly from release workflow, no duplication

fix: deploy directly from release workflow, no duplication #20

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