Update bower.json to latest purescript-aff #74
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: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: purescript-contrib/setup-purescript@main | |
with: | |
purescript: "unstable" | |
purs-tidy: "latest" | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "lts/*" | |
- name: Install dependencies | |
run: | | |
npm install -g bower | |
npm install | |
bower info purescript-node-buffer --verbose | |
bower install --production | |
- name: Build source | |
run: npm run-script build | |
- name: Run tests | |
run: | | |
bower install | |
npx pulp test | |
npx pulp test --main Test.Main1 | |
npx pulp test --main Test.Main2 | |
npx pulp test --main Test.Main3 -- <(head --bytes 1000000 /dev/zero) | |
npx pulp test --main Test.Main4 | |
- name: Check formatting | |
run: | | |
purs-tidy check src test |