Skip to content

test: unskip all skipped #29

test: unskip all skipped

test: unskip all skipped #29

Workflow file for this run

name: Tests
on:
push:
branches: [dev]
pull_request:
branches: [dev]
jobs:
quailty:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: yarn --frozen-lockfile
- run: npm run lint
- run: npm run lint:ts
- run: npm run format:check
- run: yarn build
- run: npm run ts:build:check
- run: npm test