Revert "✨ fix nodejs v22 issue" #71
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: | | |
node -v | |
pusakatest -y | |
ls -l |