Skip to content

Commit

Permalink
Fix node version
Browse files Browse the repository at this point in the history
  • Loading branch information
K0IN committed Dec 12, 2024
1 parent 7055bbb commit 3ac14ea
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/build-frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@ on:
branches:
- "*"
schedule:
- cron: "39 12 * * 6"
- cron: "39 12 * * 6"

jobs:
run-linter:
run-frontend-linter:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2

- uses: actions/setup-node@v3
with:
node-version: 'latest'
node-version: "16"

- name: Install dependencies
run: npm install
working-directory: ./app/frontend
Expand All @@ -29,4 +29,3 @@ jobs:
# - name: Build
# run: npm run lint
# working-directory: ./app/frontend

4 changes: 2 additions & 2 deletions .github/workflows/lint-backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ on:
branches:
- "*"
schedule:
- cron: "39 12 * * 6"
- cron: "39 12 * * 6"

jobs:
run-linter:
run-backend-linter:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
Expand Down

0 comments on commit 3ac14ea

Please sign in to comment.