Update int128/update-generated-files-action action to v2.67.0 #1342
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: ts | |
| on: | |
| pull_request: | |
| paths: | |
| - src/** | |
| - tests/** | |
| - '*.json' | |
| - '*.yaml' | |
| - .github/workflows/ts.yaml | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - src/** | |
| - tests/** | |
| - '*.json' | |
| - '*.yaml' | |
| - .github/workflows/ts.yaml | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 | |
| - uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0 | |
| with: | |
| node-version-file: .node-version | |
| package-manager-cache: false | |
| - run: npm install -g pnpm@latest-10 | |
| - run: pnpm i | |
| - run: pnpm run test | |
| - run: pnpm run build | |
| - name: quipper/test-report-observability-action | |
| uses: ./ | |
| with: | |
| junit-xml-path: junit.xml | |
| send-test-case-success: true | |
| filter-test-file-slower-than: 0 | |
| filter-test-case-slower-than: 0 | |
| datadog-tags: | | |
| service:test-report-observability-action | |
| generate: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| steps: | |
| - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 | |
| - uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0 | |
| with: | |
| node-version-file: .node-version | |
| package-manager-cache: false | |
| - run: npm install -g pnpm@latest-10 | |
| - run: pnpm i | |
| - run: pnpm run check --fix | |
| - uses: int128/update-generated-files-action@d9aac571db84cee6c16fa20190621e9deb2bc575 # v2.67.0 |