chore: enhance CI workflow by adding Node setup and installation steps
Some checks failed
CI / test (push) Failing after 1m49s
Some checks failed
CI / test (push) Failing after 1m49s
- Included Node.js setup step to specify the Node version. - Added installation step to ensure dependencies are installed before linting and type-checking.
This commit is contained in:
parent
28279942ad
commit
a1590e7228
1 changed files with 6 additions and 0 deletions
|
@ -6,6 +6,12 @@ jobs:
|
|||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: Setup Node
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 22
|
||||
- name: Install
|
||||
run: npm install
|
||||
- name: Lint
|
||||
run: npm run lint
|
||||
- name: Check Types
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue