Skip to content

Commit

Permalink
Fixes to linting workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
nulzo committed Oct 27, 2023
1 parent 09e0f5d commit 71ace48
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,20 @@ jobs:
- name: set up node
uses: actions/setup-node@v3
with:
node-version: '18.17.1'
- name: npm install
node-version: '18'
- name: Install Dependencies
uses: actions/checkout@v3
- working-directory: ./frontend-ts
run: npm install
run: |
npm install
- name: Lint codebase
uses: actions/checkout@v3
- working-directory: ./frontend-ts
run: make lint
run: |
npm install
make lint
- name: Test codebase
uses: actions/checkout@v3
- working-directory: ./frontend-ts
run: make test
run: |
make test

0 comments on commit 71ace48

Please sign in to comment.