generated from remometro/nexus
-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (42 loc) · 1.02 KB
/
lint.yaml
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
name: checks
on:
pull_request:
branches:
- dev
- dev/*
- main
- main/*
jobs:
run-build:
name: build
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 20
- name: Install Node.js dependencies
run: npm ci
- name: Build
run: npm run build
env:
MONGODB_URI: ${{ vars.MONGODB_URI }}
EMAIL_SERVER: ${{ vars.EMAIL_SERVER }}
EMAIL_FROM: ${{ vars.EMAIL_FROM }}
run-lint:
name: lint
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 20
# ESLint and Prettier must be in `package.json`
- name: Install Node.js dependencies
run: npm ci
- name: Run linters
run: npm run format