-
Notifications
You must be signed in to change notification settings - Fork 0
56 lines (48 loc) · 1.42 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
name: CI
# Events that trigger this workflow
on: [push, pull_request]
jobs:
lint:
name: Lint source code
runs-on: ubuntu-latest
steps:
- name: Checkout 📥
uses: actions/checkout@v3.6.0
- name: Setup Node 💿
uses: actions/setup-node@v3.8.2
with:
node-version: 14
cache: 'npm'
# Remove, when setup-node action supports specifying the node version
- name: Install npm v7 ⬆
run: npm install --global npm@v7
- name: Install development dependencies 📚
run: npm ci
- name: Check code style 🧽
run: npm run style:ci
- name: Run Linter 📑
run: npm run lint
build:
name: Build app
runs-on: ubuntu-latest
steps:
- name: Checkout 📥
uses: actions/checkout@v3.6.0
- name: Setup Node 💿
uses: actions/setup-node@v3.8.2
with:
node-version: 14
cache: 'npm'
# Remove, when setup-node action supports specifying the node version
- name: Install npm v7 ⬆
run: npm install --global npm@v7
- name: Install development dependencies 📚
run: npm ci
- name: Build application 🛠️
run: npm run build
- name: Upload build artifact 📤
uses: actions/upload-artifact@v3.2.1
with:
name: build-${{ github.run_number }}
path: build/
retention-days: 7