Skip to content
This repository has been archived by the owner on Oct 4, 2024. It is now read-only.

Commit

Permalink
Merge pull request #70 from SE-TINF22B2/dev/actions
Browse files Browse the repository at this point in the history
fix Github Actions
  • Loading branch information
henrybrink authored Apr 2, 2024
2 parents e32c9fd + a46937c commit d4fe750
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
push:
branches:
- main
pull_request_target:
branches:
- main

jobs:
build:
Expand All @@ -22,7 +25,7 @@ jobs:
node-version: '20'

- name: Install dependencies
run: npm install
run: cd backend && npm install

- name: Run tests
run: npm test
run: cd backend && npm test
7 changes: 5 additions & 2 deletions .github/workflows/frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
push:
branches:
- main
pull_request_target:
branches:
- main

jobs:
build:
Expand All @@ -22,7 +25,7 @@ jobs:
node-version: '20'

- name: Install dependencies
run: npm install
run: cd frontend && npm install

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

0 comments on commit d4fe750

Please sign in to comment.