Skip to content

chore(deps): update dependency node to v20 #148

chore(deps): update dependency node to v20

chore(deps): update dependency node to v20 #148

Workflow file for this run

name: Checks
on:
- pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # 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