chore: enhance CI workflow by adding Node setup and installation steps
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:
Juan Sebastián Montoya 2025-05-06 00:44:02 -05:00
parent 28279942ad
commit a1590e7228

View file

@ -6,6 +6,12 @@ jobs:
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22
- name: Install
run: npm install
- name: Lint - name: Lint
run: npm run lint run: npm run lint
- name: Check Types - name: Check Types