Skip to content

Modification du texte en cas de réouverture d'une habilitation france… #3608

Modification du texte en cas de réouverture d'une habilitation france…

Modification du texte en cas de réouverture d'une habilitation france… #3608

Workflow file for this run

name: Frontend tests
on:
push:
branches:
- "**"
- "!master"
jobs:
test:
runs-on: ubuntu-20.04
defaults:
run:
working-directory: frontend
steps:
- uses: actions/checkout@v3
- name: Use Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: "16.x"
- name: Cache node modules
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- run: npm install
- run: npm run lint
- run: npm run test