Skip to content

Commit

Permalink
Fix workflow 3
Browse files Browse the repository at this point in the history
  • Loading branch information
slashexx committed Nov 2, 2024
1 parent 066a6a3 commit ef5a1b6
Showing 1 changed file with 24 additions and 20 deletions.
44 changes: 24 additions & 20 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,28 +1,32 @@
name: CI

on:
push:
branches:
main
pull_request:
branches:
main
push:
branches:
- main
pull_request:
branches:
- main

jobs:
test:
runs-on: ubuntu-latest
test:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: '20.15.1'
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: '20.15.1'

- name : Install dependencies and run
run: |
cd frontend/
npm install --legacy-deps
npm test
- name: Install dependencies
run: |
cd frontend/
npm install --legacy-peer-deps
- name: Run tests
run: |
cd frontend/
npm test

0 comments on commit ef5a1b6

Please sign in to comment.