env: update husky to corepack #557
Workflow file for this run
This file contains 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: CI | |
on: [pull_request] | |
jobs: | |
integration: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: ['18', '20', '22'] | |
name: Node.js ${{ matrix.node }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup | |
uses: ./.github/actions/setup | |
with: | |
node-version-matrix: ${{ matrix.node }} | |
- name: Check Type | |
run: yarn typecheck | |
- name: Check Lint | |
run: yarn lint | |
- name: Run Test | |
run: yarn test | |
- name: Run Build | |
run: yarn build |