chore(deps-dev): bump mocha from 10.8.2 to 11.0.1 #248
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: [pull_request, push] | |
jobs: | |
prepare_matrix: | |
runs-on: ubuntu-latest | |
outputs: | |
versions: ${{ steps.generate-matrix.outputs.active }} | |
steps: | |
- name: Select all active LTS versions of Node.js | |
id: generate-matrix | |
uses: msimerson/node-lts-versions@v1 | |
test: | |
needs: | |
- prepare_matrix | |
strategy: | |
matrix: | |
node-version: ${{ fromJSON(needs.prepare_matrix.outputs.versions) }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Use Java 22 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '22' | |
- run: npm install --no-package-lock | |
name: Install dev dependencies | |
- run: npm run build | |
name: Build | |
- run: npm run js:lint | |
name: Run linter | |
- run: npm run js:test | |
name: Run unit tests |