-
-
Notifications
You must be signed in to change notification settings - Fork 19
66 lines (60 loc) · 1.64 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
name: Build
on:
pull_request:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
env:
CI: true
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: install
run: npm ci
env:
CYPRESS_INSTALL_BINARY: "0"
- name: build
run: npm run package
- name: Archive production artifacts
uses: actions/upload-artifact@v1
with:
name: alpine-devtools
path: dist
- name: unit tests
run: npm t
- name: check formatting
run: npm run format
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Apply formatting changes
# see https://github.com/bahmutov/cypress-gh-action-split-install
- run: npx cypress cache path && npx cypress cache list
# restore / cache the binary ourselves on Linux
# see https://github.com/actions/cache
- name: Cache Cypress
id: cache-cypress
uses: actions/cache@v1
with:
path: ~/.cache/Cypress
key: cypress-cache-v1-${{ runner.os }}-${{ hashFiles('**/package.json') }}
# install Cypress binary
- run: npx cypress install && npx cypress cache list
- uses: cypress-io/github-action@v2
with:
start: npm run start:ci
command: npm run cy:run
install: false