mirror of
https://github.com/pmndrs/zustand.git
synced 2025-12-08 19:45:52 +00:00
* ci(.github/workflows/lint-and-type.yml): add matrix strategy for parallel execution * ci(.github/workflows/lint-and-type.yml): set 'fail-fast' to 'false' * ci(.github/workflows): change jobs name * ci(.github/workflows): add test.yml * ci(.github/workflows/test.yml): add if condition * ci(.github/workflows/test-old-typescript.yml): rename job to 'test_old_typescript' * ci(.github/workflows/test.yml): remove matrix strategy * ci(.github/workflows/test.yml): add comment in build script * ci(.github/workflows/test.yml): change test script to sequentially
25 lines
557 B
YAML
25 lines
557 B
YAML
name: Test
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
types: [opened, synchronize]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: pnpm/action-setup@v4
|
|
- uses: actions/setup-node@v4
|
|
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
|