Bump ts-jest from 29.4.6 to 29.4.9 #364
Workflow file for this run
This file contains hidden or 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: ci | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| ci: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: "20" | |
| - uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: "6" | |
| - name: npm ci | |
| run: npm ci | |
| - name: test | |
| run: npm test | |
| - name: lint | |
| run: npm run lint | |
| - name: prettier | |
| run: npm run prettier | |
| - if: runner.os == 'Linux' | |
| name: Pack | |
| run: npm pack | |
| - if: runner.os == 'Linux' | |
| name: Upload tarball | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| path: "azure-oad-*.tgz" | |
| archive: false | |
| # Content copied from https://raw.githubusercontent.com/rhysd/actionlint/2ab3a12c7848f6c15faca9a92612ef4261d0e370/.github/actionlint-matcher.json | |
| - if: runner.os == 'Linux' | |
| name: Add ActionLint Problem Matcher | |
| run: echo "::add-matcher::.github/matchers/actionlint.json" | |
| - if: runner.os == 'Linux' | |
| name: Lint workflows | |
| uses: docker://rhysd/actionlint:1.7.11 | |
| with: | |
| args: -color -verbose |