-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (39 loc) · 1.08 KB
/
pull-request.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
name: "Pull Request Checks"
on: [ push, workflow_dispatch, pull_request ]
jobs:
build-and-test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: NPM install
uses: actions/setup-node@v1
with:
node-version: 12.x
- name: Run NPM CI
run: npm ci
- name: Lint
run: npm run lint
- name: Run Core tests
run: npm run test
automerge-dependabot:
name: "Save PR Number for Dependabot Automerge"
needs:
- build-and-test
if: ${{ github.actor == 'dependabot[bot]' && github.event_name == 'pull_request' }}
runs-on: ubuntu-latest
steps:
- name: "Checkout PR branch"
uses: actions/checkout@v2
with:
submodules: recursive
fetch-depth: 0
- name: "Save Pull Request Number"
run: |
mkdir -p ./pr
echo ${{ github.event.number }} > ./pr/NR
- uses: actions/upload-artifact@v2
with:
name: pr
path: pr/