-
-
Notifications
You must be signed in to change notification settings - Fork 0
77 lines (61 loc) · 1.94 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
name: oneiros::pr_checks
on:
pull_request:
branches:
- dev
- dev/*
- main
- main/*
jobs:
run-build:
name: oneiros::pr_checks::build
runs-on: ubuntu-latest
steps:
- name: oneiros::pr_checks::build::Check out Git repository
uses: actions/checkout@v3
- name: oneiros::pr_checks::build::Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 20
- name: oneiros::pr_checks::build::Install Node.js dependencies
run: npm ci
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: oneiros::pr_checks::build::Build
run: npm run build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run-lint:
name: oneiros::pr_checks::lint
runs-on: ubuntu-latest
steps:
- name: oneiros::pr_checks::lint::Check out Git repository
uses: actions/checkout@v3
- name: oneiros::pr_checks::lint::Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 20
# ESLint and Prettier must be in `package.json`
- name: oneiros::pr_checks::lint::Install Node.js dependencies
run: npm ci
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: oneiros::pr_checks::lint::Run linters
run: npm run ci:format
run-test:
name: oneiros::pr_checks::test
runs-on: ubuntu-latest
steps:
- name: oneiros::pr_checks::test::Check out Git repository
uses: actions/checkout@v3
- name: oneiros::pr_checks::test::Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 20
# ESLint and Prettier must be in `package.json`
- name: oneiros::pr_checks::test::Install Node.js dependencies
run: npm ci
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: oneiros::pr_checks::test::Run tests
run: npm run test