Skip to content

Prep changelog for next release #61

Prep changelog for next release

Prep changelog for next release #61

Workflow file for this run

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 install --production
- name: Build source
run: npm run-script build
- name: Run tests
run: |
bower install
npm run-script test --if-present
- name: Check formatting
run: |
purs-tidy check src test