Skip to content

Release v7.2.0

Release v7.2.0 #590

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
merge_group:
permissions:
contents: read
env:
FORCE_COLOR: 3
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
persist-credentials: false
- uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
with:
node-version-file: ".nvmrc"
cache: npm
package-manager-cache: true
- run: npm ci
- run: npx eslint .
- run: npx prettier --check .
- run: npx tsc --noEmit
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
persist-credentials: false
- uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
with:
node-version-file: ".nvmrc"
cache: npm
package-manager-cache: true
- run: npm ci
- run: npm run lint -- --fail-on-warnings
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
persist-credentials: false
- uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
with:
node-version-file: ".nvmrc"
cache: npm
package-manager-cache: true
- run: npm ci
- run: npm run unittest