Skip to content

Bump type-fest from 5.1.0 to 5.2.0 (#373) #1449

Bump type-fest from 5.1.0 to 5.2.0 (#373)

Bump type-fest from 5.1.0 to 5.2.0 (#373) #1449

Workflow file for this run

name: Test
on:
pull_request:
push:
branches:
- main
jobs:
Lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version-file: package.json
cache: npm
- run: npm ci
- run: npm run lint
Types:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version-file: package.json
cache: npm
- run: npm ci
- run: npx tsc
Demo:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version-file: package.json
cache: npm
- run: npm ci
- run: npm run demo:build
Test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version-file: package.json
cache: npm
- run: npm ci
- run: npm run test:unit
Prettier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
- uses: pre-commit/action@v3.0.1