Skip to content

Commit 83dece7

Browse files
authored
ci: rename pr testing job name and test node 14 (#213)
1 parent dcfc896 commit 83dece7

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

.github/workflows/pull-request-testing.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,22 @@ on:
55
types: [opened, reopened, synchronize, ready_for_review]
66

77
jobs:
8-
release:
8+
test_pr:
99
if: github.event.pull_request.draft == false
10-
name: 'Run tests'
10+
name: 'Testing pull request'
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout repo
1414
uses: actions/checkout@v2
1515
- name: Setup Node.js
1616
uses: actions/setup-node@v1
1717
with:
18-
node-version: 13
18+
node-version: 14
1919
- name: Install dependencies
2020
run: npm ci
2121
- name: Run linter
2222
run: npm run lint
2323
- name: Run tests
2424
run: npm test
25-
- name: Regenerate types to make sure nothing is broken
26-
run: npm run types
2725
- name: Regenerate docs to make sure jsdoc are not broken
28-
run: npm run docs
26+
run: npm run docs

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Setup Node.js
1616
uses: actions/setup-node@v1
1717
with:
18-
node-version: 13
18+
node-version: 14
1919
- name: Install dependencies
2020
run: npm ci
2121
- name: Run tests

0 commit comments

Comments
 (0)