-
Notifications
You must be signed in to change notification settings - Fork 1
57 lines (45 loc) · 1.14 KB
/
ci.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
name: pusakatest-ci
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
pusakatest-ci:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 20.x]
steps:
- name: checkout
uses: actions/checkout@v3
- name: use node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: cache npm
uses: actions/cache@v3
with:
path: ~/.npm
key: npm-${{ runner.OS }}-node_modules-${{ hashFiles('**/package-lock.json') }}
- name: cache node modules
uses: actions/cache@v3
with:
path: node_modules
key: node_modules-${{ runner.OS }}-node_modules-${{ hashFiles('**/package-lock.json') }}
- name: install dependencies
run: npm install
- name: symlink using npm-link
run: npm link
- name: run pusakatest
run: |
mkdir hello-pusakatest && cd hello-pusakatest
node -v
pusakatest -y
pwd
ls
ls -l
- name: execute test cases
run: |
npm run test
npm run test-publish