Skip to content

Mise à jour des dépendances #1254

Mise à jour des dépendances

Mise à jour des dépendances #1254

Workflow file for this run

name: Node.js CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- run: yarn --immutable
- run: yarn lint
- name: db cache
id: cache-db
uses: actions/cache@v4
with:
path: .db
key: db
- run: yarn download-contours
if: steps.cache-db.outputs.cache-hit != 'true'
- run: yarn test
- run: yarn build