Skip to content

chore(deps)!: Version 3.0.0 #7

chore(deps)!: Version 3.0.0

chore(deps)!: Version 3.0.0 #7

Workflow file for this run

name: CI Pipeline
on: pull_request
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Check coding standards
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'npm'
- run: npm ci
- run: npm run typecheck
- run: npm run lint
- run: npm run prettier
- run: npm run build
- run: npm test