chore(deps): update eslint-related packages to v6 (major) #5206
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: Unit Tests | |
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 "versions=${VERSIONS}" >> $GITHUB_OUTPUT | |
test: | |
runs-on: ubuntu-latest | |
needs: | |
- prepare_matrix | |
strategy: | |
matrix: | |
node-version: ${{ fromJSON(needs.prepare_matrix.outputs.versions) }} | |
steps: | |
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8 # v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: | | |
npm i -g npm | |
npm ci | |
name: Install dev dependencies | |
- run: npm run lint | |
name: Linter | |
- run: npm run test | |
name: Unit Tests |