Bump setup-node from 64ed1c7
to b39b52d
#4
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: Code Validation | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: {} | |
jobs: | |
root: | |
name: Node.js (main) | |
uses: ./.github/workflows/nodejs-lint-reusable.yml | |
with: | |
checkout-parameters: > | |
{ | |
"submodules": true | |
} | |
npm-install-check-enable: true | |
npm-install-arguments: > | |
[ | |
"--workspaces", | |
"--include-workspace-root", | |
"--install-links" | |
] | |
tsc-check-enable: true | |
tsc-parameters: > | |
{ | |
"arguments": "--noEmit\n-p\n./jsconfig.json" | |
} | |
eslint-check-enable: true | |
prettier-check-enable: true | |
special-eslint: | |
name: Node.js (specialized for ${{ matrix.project }}) | |
strategy: | |
matrix: | |
project: | |
- run/ms-idp-workflow-run-auth | |
uses: ./.github/workflows/nodejs-lint-reusable.yml | |
with: | |
checkout-parameters: > | |
{ | |
"submodules": true | |
} | |
npm-install-arguments: > | |
[ | |
"--workspace", | |
"${{ matrix.project }}", | |
"--include-workspace-root" | |
] | |
npm-install-check-enable: false | |
tsc-check-enable: false | |
eslint-check-enable: true | |
eslint-parameters: > | |
{ | |
"npm-workspace": "${{ matrix.project }}" | |
} | |
prettier-check-enable: false |