update-flake-lock/.github/workflows/ci.yml

34 lines
985 B
YAML
Raw Permalink Normal View History

2022-04-05 08:38:39 -07:00
name: CI
on:
pull_request:
push:
branches: [main]
jobs:
2024-04-29 10:15:25 -03:00
typescript-action:
2024-04-21 19:42:23 -03:00
runs-on: ubuntu-22.04
2022-04-05 08:38:39 -07:00
steps:
- uses: actions/checkout@v4
2022-04-05 08:38:39 -07:00
with:
fetch-depth: 0
- name: Install Nix
2023-02-08 09:37:07 -08:00
uses: DeterminateSystems/nix-installer-action@main
- name: Enable magic Nix cache
uses: DeterminateSystems/magic-nix-cache-action@main
2024-04-26 14:19:53 -03:00
- name: Install pnpm dependencies
run: nix develop --command pnpm install
- name: Check formatting
run: nix develop --command pnpm run check-fmt
- name: Lint
run: nix develop --command pnpm run lint
- name: Build
run: nix develop --command pnpm run build
- name: Run test suite
run: nix develop --command pnpm run test
- name: Package
run: nix develop --command pnpm run package
- name: Check git status
run: git status --porcelain=v1
- name: Ensure no staged changes
run: git diff --exit-code