From 43377623d240444a7fafe28b87bba87d3a8a97b8 Mon Sep 17 00:00:00 2001 From: bodymindarts Date: Fri, 27 Oct 2023 21:30:52 +0200 Subject: [PATCH] ci: install nix in check-code --- .github/workflows/check-code.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/check-code.yml b/.github/workflows/check-code.yml index 57e8c8300c..9d941bed96 100644 --- a/.github/workflows/check-code.yml +++ b/.github/workflows/check-code.yml @@ -12,6 +12,10 @@ jobs: name: Check Code runs-on: ubuntu-latest steps: + - name: Install Nix + uses: DeterminateSystems/nix-installer-action@v4 + - name: Run the Magic Nix Cache + uses: DeterminateSystems/magic-nix-cache-action@v2 - uses: actions/checkout@v3 - run: cd core/api && nix develop -c pnpm install - name: Run check code