Skip to content

Fix cs issue in test #140

Fix cs issue in test

Fix cs issue in test #140

Workflow file for this run

name: CI
on:
push:
branches: ['*']
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
concurrency:
group: 'ci'
cancel-in-progress: true
jobs:
ci-tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 18.x
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v4
- name: 🟢 Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- name: 🖌 Lint
run: pnpm run lint
- name: 🛠 Unit tests
run: pnpm run test:unit --run