mirror of
https://github.com/pmndrs/valtio.git
synced 2026-03-27 10:32:45 +00:00
25 lines
698 B
YAML
25 lines
698 B
YAML
name: Test
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
types: [opened, synchronize]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
- uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
|
|
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
|
|
with:
|
|
node-version: 'lts/*'
|
|
cache: 'pnpm'
|
|
- run: pnpm install
|
|
- run: pnpm run test:format
|
|
- run: pnpm run test:types
|
|
- run: pnpm run test:lint
|
|
- run: pnpm run test:spec
|
|
- run: pnpm run build # we don't have any other workflows to test build
|