Skip to content

chore(deps-dev): bump semantic-release from 22.0.12 to 23.0.0 #6972

chore(deps-dev): bump semantic-release from 22.0.12 to 23.0.0

chore(deps-dev): bump semantic-release from 22.0.12 to 23.0.0 #6972

Workflow file for this run

name: Unit Tests
on:
pull_request:
branches: [ master ]
push:
branches: [ master ]
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: Select 3 most recent LTS versions of Node.js
id: generate-matrix
run: echo "versions=$(curl -s https://endoflife.date/api/nodejs.json | jq -c '[[.[] | select(.lts != false)][:3] | .[].cycle | tonumber]')" >> "$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
name: Install dev dependencies
- run: npm run lint
name: Linter
- run: npm run test
name: Unit Tests