Skip to content

Commit

Permalink
PROCESS: Github Actions upgraded to Node 20.
Browse files Browse the repository at this point in the history
  • Loading branch information
benel committed Mar 29, 2024
1 parent fe9a6ab commit 1c2432b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download sources
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up NodeJS
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
cache: 'npm'
cache-dependency-path: frontend/package-lock.json
- name: Install frontend dependencies
Expand All @@ -24,7 +24,7 @@ jobs:
cd frontend
npm run build
- name: Save frontend build for later
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: frontend-build
path: frontend/build
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download sources
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Download tools
run: |
cd backend
Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:
ref: ${{ github.event.pull_request.head.sha || github.sha }}
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Get frontend build
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: frontend-build
path: frontend/build
Expand Down

0 comments on commit 1c2432b

Please sign in to comment.