👷 github actions improvement related to nodejs version rules #60
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, 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' |