Skip to content

Ajout d'un export du changelog des projets (#464) #1168

Ajout d'un export du changelog des projets (#464)

Ajout d'un export du changelog des projets (#464) #1168

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: [20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- run: yarn --frozen-lockfile
- run: yarn lint
- name: db cache
id: cache-db
uses: actions/cache@v3
with:
path: .db
key: db
- run: yarn download-contours
if: steps.cache-db.outputs.cache-hit != 'true'
- run: yarn test
- run: yarn build