chore(deps): bump the npm group with 6 updates #372
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: main | |
| on: | |
| workflow_dispatch: | |
| push: | |
| paths-ignore: | |
| - "*.md" | |
| branches: | |
| - master | |
| pull_request: | |
| paths-ignore: | |
| - "*.md" | |
| branches: | |
| - master | |
| permissions: | |
| actions: read | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6 | |
| with: | |
| node-version-file: ".tool-versions" | |
| cache: "npm" | |
| - name: Install | |
| run: npm ci | |
| - name: Build | |
| run: npm run build | |
| - name: Check bundled action | |
| run: git diff --exit-code -- dist/index.js | |
| - name: Test | |
| run: npm run test | |
| - name: Format | |
| run: npm run fmtcheck | |
| integration: | |
| if: github.event_name == 'push' | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6 | |
| with: | |
| node-version-file: ".tool-versions" | |
| cache: "npm" | |
| - name: Turnstyle | |
| uses: ./ # Uses an action in the root directory | |
| with: | |
| poll-interval-seconds: 10 | |
| - name: Deploy | |
| run: sleep 180 |