Correct paths windows backslashes and spawn shell param. #372
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: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macOS-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Node toolchain | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "16" | |
- 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: Setup PureScript dependencies | |
run: npm i --global purescript@0.15.10 purs-tidy@latest spago@latest purescript-psa@latest esbuild@latest | |
- name: Cache PureScript dependencies | |
uses: actions/cache@v2 | |
with: | |
key: ${{ runner.os }}-spago-${{ hashFiles('**/*.dhall') }} | |
path: | | |
.spago | |
output | |
- name: Install dependencies | |
run: spago install | |
- name: Build project | |
run: spago build --purs-args '--censor-lib --strict' | |
- name: Run snapshots | |
run: spago test --purs-args '--censor-lib' | |
- name: Test output-diff (Linux only) | |
if: matrix.os == 'ubuntu-latest' | |
run: cd backend-es && npm run test:output-diff | |
- name: Check formatting (Linux only) | |
if: matrix.os == 'ubuntu-latest' | |
run: npm run format:check |