-
Notifications
You must be signed in to change notification settings - Fork 1
49 lines (38 loc) · 1.01 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
name: pusakatest-ci
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
pusakatest-ci:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.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 asdf && cd asdf
pusakatest -y
npm run test-publish