Skip to content

Commit

Permalink
CI(front): add ci pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasWerey committed Jan 12, 2024
1 parent b53b239 commit 0a96a74
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,14 @@ jobs:
node-version: "18"
registry-url: "https://npm.pkg.github.com"

- name: Change working directory
run: cd Front

- name: Install dependencies
run: cd Front && npm ci
run: npm ci

- name: Run tests
run: cd Front && npm run test
run: npm run test

- name: Run linter
run: cd Front && npm run lint
run: npm run lint

0 comments on commit 0a96a74

Please sign in to comment.