Skip to content

CI(front): add ci pipeline #3

CI(front): add ci pipeline

CI(front): add ci pipeline #3

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: Change working directory
run: cd Front
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test
- name: Run linter
run: npm run lint