mirror of
https://github.com/NotAShelf/nix-evaluator-stats.git
synced 2026-05-08 08:25:13 +00:00
Bumps [pnpm/action-setup](https://github.com/pnpm/action-setup) from 6 to 6.0.4. - [Release notes](https://github.com/pnpm/action-setup/releases) - [Commits](https://github.com/pnpm/action-setup/compare/v6...v6.0.4) --- updated-dependencies: - dependency-name: pnpm/action-setup dependency-version: 6.0.4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
33 lines
620 B
YAML
33 lines
620 B
YAML
name: Check
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Setup pnpm
|
|
uses: pnpm/action-setup@v6.0.4
|
|
with:
|
|
version: 10
|
|
|
|
- name: Setup Node
|
|
uses: actions/setup-node@v6.4.0
|
|
with:
|
|
node-version: 22
|
|
cache: pnpm
|
|
|
|
- run: pnpm install --frozen-lockfile
|
|
|
|
- name: Build core packages
|
|
run: pnpm -r --filter '!@ns/web' build
|
|
|
|
- run: pnpm run check
|
|
- run: pnpm run lint
|
|
- run: pnpm run fmt --check
|