chore(deps): update actions/checkout action to v6 #4350
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: 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 |