Skip to content

ci: bump the default group with 7 updates #808

ci: bump the default group with 7 updates

ci: bump the default group with 7 updates #808

Workflow file for this run

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