fix: typo (#28) #70
This file contains hidden or 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: [main] | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'npm' | |
- name: Cache PureScript dependencies | |
uses: actions/cache@v4 | |
with: | |
key: ${{ runner.os }}-spago-${{ hashFiles('**/spago.lock') }} | |
path: | | |
.spago | |
output | |
- name: Install npm dependencies | |
run: npm install | |
- name: Build source | |
run: npx spago build --pure --pedantic-packages | |
- name: Run tests | |
run: npm run test | |
- name: Verify formatting | |
run: npm run format:check |