Skip to content

Merge pull request #221 from clemstoquart/chore/nodejs-22 #421

Merge pull request #221 from clemstoquart/chore/nodejs-22

Merge pull request #221 from clemstoquart/chore/nodejs-22 #421

Workflow file for this run

name: Run lint and build
on: [push]
jobs:
run:
name: Lint and build
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
with:
ref: master
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
- name: Install npm 10
run: npm i -g npm@10
- run: node --version
- run: npm --version
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Build
run: npm run build