-
-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (43 loc) · 1.03 KB
/
test.workflow.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
name: Test
on:
push:
branches:
- main
paths-ignore:
- 'CHANGELOG.md'
- 'CONTRIBUTING.md'
- 'README.md'
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches:
- main
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 30
if: github.event.pull_request.draft == false
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Update NPM to latest
run: npm install npm@latest -g
- name: Print Node.js and NPM version
run: |
node -v
npm -v
- name: Install dependencies
run: npm ci
- name: Run tests
timeout-minutes: 5
run: npm test
- name: Test CLI
timeout-minutes: 5
run: ./dist/bin/index.js --version