Skip to content

chore: create LICENSE #10

chore: create LICENSE

chore: create LICENSE #10

Workflow file for this run

name: Test
on:
push:
paths-ignore:
- '.github/**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 8
- uses: actions/setup-node@v3
with:
node-version: "20.11.1"
registry-url: "https://registry.npmjs.org"
cache: 'pnpm'
- uses: actions/cache@v3
with:
path: |
~/.pnpm-store
**/node_modules
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-
- run: pnpm install
- run: pnpm typecheck
- run: pnpm biome:check
- run: pnpm test
- run: npx playwright install --with-deps
- run: pnpm storybook:test:ci