Skip to content

Commit

Permalink
feat changed to correct dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelHorwitz committed May 30, 2024
1 parent 3c7ced0 commit a60847f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/jest-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ jobs:
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: '20.13.1'
node-version: '18.20.3'
- name: Install dependencies
run: |
cd frontend
npm install yarn
npm install -g yarn
yarn
- name: Run jest
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Linting
run-name: ${{ github.actor }} at ${{ github.event_name }} event
on:
workflow_dispatch:
jst:
lnt:
pull_request:
branches:
- main
Expand All @@ -19,13 +19,13 @@ jobs:
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: '20.13.1'
node-version: '18.20.3'
- name: Install dependencies
run: |
cd frontend
npm install yarn
npm install -g yarn
yarn
- name: Run jest
- name: Run linter
run: |
cd frontend
yarn lint

0 comments on commit a60847f

Please sign in to comment.