chore(): update dependency @types/node to v18.17.15 #1054
Workflow file for this run
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: Node.js CI | |
on: [push, pull_request] | |
jobs: | |
# https://thekevinwang.com/2021/09/19/github-actions-dynamic-matrix/ | |
prepare_matrix: | |
runs-on: ubuntu-latest | |
outputs: | |
versions: ${{ steps.generate-matrix.outputs.versions }} | |
steps: | |
- name: Generate Node.js versions matrix | |
id: generate-matrix | |
run: | | |
sudo apt-get install -y lynx | |
lynx -dump https://endoflife.date/nodejs | grep -E -o '[0-9]+[( a-zA-Z]+LTS\)' | grep -E -o '([0-9]+)' > eol.list | |
cat eol.list | |
lts1=$(cat eol.list | head -1) | |
lts2=$(cat eol.list | head -2 | tail -1) | |
lts3=$(cat eol.list | head -3 | tail -1) | |
VERSIONS="[$lts1, $lts2, $lts3]" | |
echo ::set-output name=versions::${VERSIONS} | |
build: | |
runs-on: ubuntu-latest | |
needs: | |
- prepare_matrix | |
strategy: | |
matrix: | |
node-version: ${{ fromJSON(needs.prepare_matrix.outputs.versions) }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: | | |
npm i -g npm | |
npm ci || npm install | |
name: Install dev dependencies | |
- run: npm run lint | |
name: Linter | |
- run: npm run test | |
name: Tests |