Skip to content

chore(deps): bump teen_process from 2.0.48 to 2.0.49 #6332

chore(deps): bump teen_process from 2.0.48 to 2.0.49

chore(deps): bump teen_process from 2.0.48 to 2.0.49 #6332

Workflow file for this run

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: 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 ci
name: Install dev dependencies
- run: npm run lint
name: Linter
- run: npm run test
name: Unit Tests