From 72bf8f2ad8338878e065740f4e890517090c94fe Mon Sep 17 00:00:00 2001 From: roryc89 Date: Wed, 14 Apr 2021 23:55:29 +0100 Subject: [PATCH] bump spago and comment out cache --- .github/workflows/ci.yml | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index deceb1c7..15af16ce 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,25 +12,25 @@ jobs: with: purescript: "0.13.8" psa: "0.7.2" - spago: "0.19.0" + spago: "0.19.1" - - name: Cache PureScript dependencies - uses: actions/cache@v2 - # This cache uses the .dhall files to know when it should reinstall - # and rebuild packages. It caches both the installed packages from - # the `.spago` directory and compilation artifacts from the `output` - # directory. When restored the compiler will rebuild any files that - # have changed. If you do not want to cache compiled output, remove - # the `output` path. - with: - key: ${{ runner.os }}-spago-${{ hashFiles('**/*.dhall') }} - path: | - .spago - output - examples/1-simple/.spago - examples/1-simple/output - examples/2-codegen/.spago - examples/2-codegen/output + # - name: Cache PureScript dependencies + # uses: actions/cache@v2 + # # This cache uses the .dhall files to know when it should reinstall + # # and rebuild packages. It caches both the installed packages from + # # the `.spago` directory and compilation artifacts from the `output` + # # directory. When restored the compiler will rebuild any files that + # # have changed. If you do not want to cache compiled output, remove + # # the `output` path. + # with: + # key: ${{ runner.os }}-spago-${{ hashFiles('**/*.dhall') }} + # path: | + # .spago + # output + # examples/1-simple/.spago + # examples/1-simple/output + # examples/2-codegen/.spago + # examples/2-codegen/output - run: spago build - run: npm i - run: npm run bundle