-
Notifications
You must be signed in to change notification settings - Fork 0
65 lines (49 loc) · 1.68 KB
/
pr-checker.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
57
58
59
60
61
62
63
64
65
name: 'PR Checker'
# **What it does**: Runs unit tests before allowing PRs to merge.
# **Why we have it**: To make sure all unit tests pass
# **Who does it impact**: Devs who want to merge PRs
# Adapted from https://docs.github.com/en/actions/examples/using-scripts-to-test-your-code-on-a-runner
on:
workflow_dispatch:
pull_request:
# This allows a subsequently queued workflow run to interrupt previous runs
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
unit-tests:
name: Unit Tests
runs-on: 'ubuntu-latest'
steps:
- name: Add /usr/local/bin to PATH
run: echo "/usr/local/bin" >> $GITHUB_PATH
- name: Checkout
uses: actions/checkout@v3
- name: Setup, Authenticate, and Install
uses: ./.github/actions/setup-runner
- name: Run Unit tests
run: npm run test
check-formatting:
name: Check Formatting
runs-on: 'ubuntu-latest'
steps:
- name: Add /usr/local/bin to PATH
run: echo "/usr/local/bin" >> $GITHUB_PATH
- name: Checkout
uses: actions/checkout@v3
- name: Setup, Authenticate, and Install
uses: ./.github/actions/setup-runner
- name: Check Formatting
run: npm run check:format
linting:
name: Linting
runs-on: 'ubuntu-latest'
steps:
- name: Add /usr/local/bin to PATH
run: echo "/usr/local/bin" >> $GITHUB_PATH
- name: Checkout
uses: actions/checkout@v3
- name: Setup, Authenticate, and Install
uses: ./.github/actions/setup-runner
- name: Linting
run: npm run check:lint