feat: update to spago@next #116
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up PureScript toolchain | |
uses: purescript-contrib/setup-purescript@main | |
with: | |
purescript: "unstable" | |
- name: Cache PureScript dependencies | |
uses: actions/cache@v2 | |
with: | |
key: ${{ runner.os }}-spago-${{ hashFiles('**/*.dhall') }} | |
path: | | |
.spago | |
output | |
- name: Set up Node toolchain | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "20.x" | |
- name: Cache NPM dependencies | |
uses: actions/cache@v2 | |
env: | |
cache-name: cache-node-modules | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package.json') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- name: Install NPM dependencies | |
run: npm install | |
# delete me after updating purescript-contrib/setup-purescript@main | |
- name: Install latest spago | |
run: npm install -g spago@next | |
- name: Build the project | |
run: npm run build | |
- name: Build and bundle tests | |
run: ./node_modules/@vercel/ncc/dist/ncc/cli.js build --minify test/index.js | |
- name: Run tests | |
uses: ./test | |
with: | |
testinput: test | |
- name: Verify Bower & Pulp | |
run: | | |
npm install bower pulp@16.0.2 | |
npx bower install | |
npx pulp build |