Skip to content

Run test_prettier in ci #4

Run test_prettier in ci

Run test_prettier in ci #4

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches: main
jobs:
test:
# proactively cancel the same job running on the same branch when a newer
# one comes in
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 18
cache: "npm"
- run: npm ci
- run: npm test
- run: npm test_prettier
- run: npm run build