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