-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (42 loc) Β· 1.01 KB
/
recruiting_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
name: HackUPC recruiting page CI
defaults:
run:
working-directory: .
on:
pull_request:
branches: [master]
workflow_dispatch:
env:
DEBUG: 1
IMAGE_TAG: ${{ github.job }}-${{ github.sha }}
jobs:
lint:
name: π¦ Linter
runs-on: ubuntu-latest
steps:
- name: π Setup repo
uses: actions/checkout@v3
- name: π Setup Node
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: π¦ Install dependencies
run: npm install
- name: π¦ Check format (prettier)
run: npm run check-format
- name: π¦ Check lint (eslint)
run: npm run check-lint
build:
name: π Builder
runs-on: ubuntu-latest
steps:
- name: π Setup repo
uses: actions/checkout@v3
- name: π Setup Node
uses: actions/setup-node@v3
with:
node-version: 20.x
- name: π¦ Install dependencies
run: npm install
- name: π Build
run: npm run build