Skip to content

Fix global settings and add Biome #2

Fix global settings and add Biome

Fix global settings and add Biome #2

name: Tests
on:
push:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setep PNPM
uses: pnpm/action-setup@v2
with:
version: latest
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'pnpm'
- name: Build dependencies
run: pnpm install
- name: Build package
run: pnpm build
- name: ESLint
run: pnpm lint
- name: Tests
run: pnpm test