From 79a7506044f572f70e60439ce296389d70e2c6c7 Mon Sep 17 00:00:00 2001 From: Peter Becich Date: Sat, 12 Apr 2025 19:36:40 -0700 Subject: [PATCH 1/2] fix CI --- .github/workflows/check.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check.yaml b/.github/workflows/check.yaml index 187b9b4..b17aadf 100644 --- a/.github/workflows/check.yaml +++ b/.github/workflows/check.yaml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up a PureScript toolchain uses: purescript-contrib/setup-purescript@main @@ -18,9 +18,9 @@ jobs: spago: "unstable" purs-tidy: "latest" - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v4.3.0 with: - node-version: "20" + node-version: "node" - name: Cache PureScript dependencies uses: actions/cache@v2 From 1f1b5700f2c6a0b41cd1847894690c22a2ac391e Mon Sep 17 00:00:00 2001 From: Peter Becich Date: Sat, 12 Apr 2025 19:36:57 -0700 Subject: [PATCH 2/2] disable purs-tidy --- .github/workflows/check.yaml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/check.yaml b/.github/workflows/check.yaml index b17aadf..983dbd7 100644 --- a/.github/workflows/check.yaml +++ b/.github/workflows/check.yaml @@ -16,14 +16,14 @@ jobs: with: purescript: "unstable" spago: "unstable" - purs-tidy: "latest" + # purs-tidy: "latest" - uses: actions/setup-node@v4.3.0 with: - node-version: "node" + node-version: "20" - name: Cache PureScript dependencies - uses: actions/cache@v2 + uses: actions/cache@v4 with: key: ${{ runner.os }}-spago-${{ hashFiles('**/*.dhall') }} path: | @@ -39,6 +39,5 @@ jobs: - name: Run tests run: spago test - - name: Check formatting - run: purs-tidy check src test - + # - name: Check formatting + # run: purs-tidy check src test