Skip to content

Reconfig linter, add prettier #49

Reconfig linter, add prettier

Reconfig linter, add prettier #49

Workflow file for this run

name: Run Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: ['18']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run lint
- run: npm run check-format
- run: npm run compile
- run: npm test