ci: bump the default group with 7 updates #808
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: Actions | |
| on: | |
| pull_request: | |
| branches: | |
| - development | |
| jobs: | |
| pinact: | |
| name: Pinact | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - name: Check actions are pinned | |
| uses: suzuki-shunsuke/pinact-action@896d595f299e71d65b9d28349d6956abe144390a # v3.0.0 | |
| with: | |
| skip_push: "true" | |
| fix: "false" | |
| config: .github/.pinact.yaml | |
| lint: | |
| name: Verify | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| fetch-depth: 0 | |
| - name: Use Node.js | |
| uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 | |
| with: | |
| node-version-file: '.nvmrc' | |
| # install the latest of v11 to fix npm ci issues | |
| - run: npm i -g npm@11 | |
| - name: Install Dependencies | |
| run: npm ci | |
| - name: Commitlint | |
| run: > | |
| npx commitlint | |
| --from ${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }} | |
| --to ${{ github.event.pull_request.head.sha }} | |
| --verbose | |
| - name: Run linters | |
| run: npm run lint | |
| - name: Run Build | |
| run: npm run validate | |
| - name: Test | |
| run: npm test |