Skip to content

chore(deps): bump actions/setup-node from 4 to 6 #306

chore(deps): bump actions/setup-node from 4 to 6

chore(deps): bump actions/setup-node from 4 to 6 #306

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
- develop
jobs:
linter_eslint:
name: linter:eslint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v6
with:
node-version: 22
cache: 'npm'
- run: npm ci
- run: npm run lint
tests_units:
name: tests:units
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v6
with:
node-version: 22
cache: 'npm'
- run: npm ci
- run: npm run test:cov
build_app:
name: build:app
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v6
with:
node-version: 22
cache: 'npm'
- run: npm ci
- run: npm run build