-
Notifications
You must be signed in to change notification settings - Fork 18
80 lines (80 loc) · 2.37 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
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
name: CI
on: push
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: 🚚 Get latest code
uses: actions/checkout@v2
- name: 🎯 Read .nvmrc
run: echo "##[set-output name=NVMRC;]$(cat .nvmrc)"
id: nvm
- name: 🎯 Use Node.js (.nvmrc)
uses: actions/setup-node@v1
with:
node-version: '${{ steps.nvm.outputs.NVMRC }}'
- name: 🎁 Install dependencies
run: npm ci
- name: 👷🏽♂️ Build the site
run: npm run dist
- name: 💾 Store the build
uses: actions/upload-artifact@v2
with:
name: dist
path: dist
lighthouseci:
name: Lighthouse
needs: build
runs-on: ubuntu-latest
steps:
- name: 🚚 Get latest code
uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: 🚚 Get the build
uses: actions/download-artifact@v2
with:
name: dist
path: dist
- name: 🎯 Read .nvmrc
run: echo "##[set-output name=NVMRC;]$(cat .nvmrc)"
id: nvm
- name: 🎯 Use Node.js (.nvmrc)
uses: actions/setup-node@v1
with:
node-version: '${{ steps.nvm.outputs.NVMRC }}'
- name: 🎁 Install Lighthouse
run: npm install -g @lhci/cli
- name: 🔎 Run Lighthouse
run: lhci autorun
env:
LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }}
lintfix:
name: Lint and fix
runs-on: ubuntu-latest
strategy:
matrix:
command: ['lint:eslint', 'lint:stylelint', 'lint:prettier']
steps:
- name: 🚚 Get latest code
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: 🎯 Read .nvmrc
run: echo "##[set-output name=NVMRC;]$(cat .nvmrc)"
id: nvm
- name: 🎯 Use Node.js (.nvmrc)
uses: actions/setup-node@v1
with:
node-version: '${{ steps.nvm.outputs.NVMRC }}'
- name: 🎁 Install dependencies
run: npm ci
- name: 🔦 Run ${{ matrix.command }}
run: npm run ${{ matrix.command }}
- name: 🍾 Commit & Push changes
uses: actions-js/push@master
with:
message: 'chore: Auto-fix some lint errors'
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}