From c1d27e11c386c6dd3c040569a4c94851a8a8a006 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Thu, 11 Apr 2024 19:23:06 -0400 Subject: [PATCH] Update ci steps --- .github/workflows/ci.yml | 24 ++++++------------------ 1 file changed, 6 insertions(+), 18 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eeb77b8..1f9452f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,27 +13,15 @@ jobs: - uses: actions/checkout@v3 - name: Install Nix uses: DeterminateSystems/nix-installer-action@main - - name: Record existing bundle hash - run: | - echo "BUNDLE_HASH=$(sha256sum >$GITHUB_ENV + - uses: DeterminateSystems/magic-nix-cache-action@main - name: Check shell scripts run: | nix develop --command shellcheck ./.github/workflows/cache-test.sh - - name: Build action - run: | - nix develop --command just build - - name: Check bundle consistency - run: | - NEW_BUNDLE_HASH=$(sha256sum &2 echo "The committed dist/index.js is out-of-date!" - >&2 echo - >&2 echo " Committed: $BUNDLE_HASH" - >&2 echo " Built: $NEW_BUNDLE_HASH" - >&2 echo - >&2 echo 'Run `just build` then commit the resulting dist/index.js' - exit 1 - fi + - uses: DeterminateSystems/nix-installer-action@main + - run: nix develop --command pnpm install + - run: nix develop --command pnpm run all + - run: git status --porcelain=v1 + - run: test $(git status --porcelain=v1 2>/dev/null | wc -l) -eq 0 run-x86_64-linux: name: Run x86_64 Linux