-
Notifications
You must be signed in to change notification settings - Fork 20
50 lines (40 loc) · 1.15 KB
/
build.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
41
42
43
44
45
46
47
48
49
50
name: BUILD
on:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
# SETUP
- uses: actions/checkout@v2
- name: Cache PureScript dependencies
uses: actions/cache@v2
with:
key: ${{ runner.os }}-spago-${{ hashFiles('**/*.dhall') }}
path: .spago
- uses: actions/setup-node@v1
with:
node-version: "12.x"
- name: Install YARN
run: npm install -g yarn
- name: Cache node modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
# yarn cache files are stored in `~/.cache/yarn` on Linux/macOS
path: ~/.cache/yarn
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install YARN dependencies
run: yarn install --frozen-lockfile
# BUILD
- name: Build source
run: yarn build
# TEST
- name: Run tests
run: yarn test