chore(deps): update dependency @types/node to v20.17.6 #202
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: Pull Request (Test Utility) | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- testing/util/** | |
jobs: | |
test: | |
name: Test Utility CI | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Use Node.js ${{ env.node_version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.node_version }} | |
registry-url: "https://registry.npmjs.org" | |
- name: Install NPM packages | |
working-directory: testing/util | |
run: npm ci | |
- name: Build | |
working-directory: testing/util | |
run: npm run build | |
- name: Run unit tests | |
working-directory: testing/util | |
run: | | |
npm test | |
- name: Run test content | |
working-directory: testing/util | |
run: | | |
npm run exec -- test ./test-content |