Skip to content

feat: migration vers le nouveau format MT #1371

feat: migration vers le nouveau format MT

feat: migration vers le nouveau format MT #1371

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: lts/*
cache: yarn
- run: yarn --frozen-lockfile
- run: yarn lint
- run: yarn test --coverage
env:
CI: true
- uses: codecov/codecov-action@v2
- run: yarn build