Update to spago-next (#20) #121
Workflow file for this run
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: Cache PureScript dependencies | |
uses: actions/cache@v2 | |
with: | |
key: ${{ runner.os }}-spago-${{ hashFiles('**/spago.yaml') }} | |
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 -g spago@next purescript@latest | |
- name: Install NPM dependencies | |
run: npm install | |
- 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 |