-
Notifications
You must be signed in to change notification settings - Fork 6
40 lines (35 loc) · 1.18 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: CI
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: purescript-contrib/setup-purescript@v2.0.0
with:
purescript: "0.15.12"
psa: "0.8.2"
spago: "0.20.9"
- name: Cache PureScript dependencies
uses: actions/cache@v2
# This cache uses the .dhall files to know when it should reinstall
# and rebuild packages. It caches both the installed packages from
# the `.spago` directory and compilation artifacts from the `output`
# directory. When restored the compiler will rebuild any files that
# have changed. If you do not want to cache compiled output, remove
# the `output` path.
with:
key: k1-${{ runner.os }}-spago-${{ hashFiles('**/*.dhall') }}
path: |
.spago
output
codegen/schema/.spago
codegen/schema/output
examples/1-simple/.spago
examples/1-simple/output
examples/2-codegen/.spago
examples/2-codegen/output
- run: spago build
- run: npm i
- run: npm run bundle
- run: npm t