Skip to content

chore(deps): update actions/checkout action to v6 #4350

chore(deps): update actions/checkout action to v6

chore(deps): update actions/checkout action to v6 #4350

Workflow file for this run

name: Checks
on:
- push
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version-file: package.json
cache: yarn
cache-dependency-path: yarn.lock
- name: Install modules
run: corepack yarn
- name: Run lint check
run: corepack yarn run lint
- name: Run format check
run: corepack yarn run check:format
- name: Run type check
run: corepack yarn run check:types
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version-file: package.json
cache: yarn
cache-dependency-path: yarn.lock
- name: Install modules
run: corepack yarn
- name: Run tests
run: corepack yarn run test