Skip to content

CI(front): add ci pipeline #2

CI(front): add ci pipeline

CI(front): add ci pipeline #2

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: "18"
registry-url: "https://npm.pkg.github.com"
- name: Install dependencies
run: cd Front && npm ci
- name: Run tests
run: cd Front && npm run test
- name: Run linter
run: cd Front && npm run lint