-
Notifications
You must be signed in to change notification settings - Fork 1
59 lines (47 loc) · 1.47 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
58
59
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, 22.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- name: checkout
uses: actions/checkout@v2
- name: use node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: cache npm
uses: actions/cache@v2
with:
path: ~/.npm
key: npm-${{ runner.OS }}-node_modules-${{ hashFiles('**/package-lock.json') }}
- name: cache node modules
uses: actions/cache@v2
with:
path: node_modules
key: node_modules-${{ runner.OS }}-node_modules-${{ hashFiles('**/package-lock.json') }}
- name: install dependencies
run: npm install
continue-on-error: ${{ matrix.node-version == '22.x' }}
- name: check for unsupported engine warning
if: matrix.node-version == '22.x'
run: |
npm install 2>&1 | tee npm-install.log | grep "npm warn EBADENGINE Unsupported engine"
if [ $? -ne 0 ]; then
echo "Expected engine warning not found"
exit 1
fi
- name: symlink using npm-link
run: npm link
if: matrix.node-version != '22.x'
- name: run pusakatest
run: pusakatest -y
if: matrix.node-version != '22.x'