Skip to content

Commit

Permalink
Upgrade node version to v20.
Browse files Browse the repository at this point in the history
  • Loading branch information
joelday committed Oct 3, 2024
1 parent 76f2aa6 commit bc6aeff
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: "Build"
on:
push:
branches:
- '**'
- "**"

jobs:
build:
Expand All @@ -15,7 +15,7 @@ jobs:
- name: git credentials
uses: oleksiyrudenko/gha-git-credentials@v2-latest
with:
token: '${{ secrets.GITHUB_TOKEN }}'
token: "${{ secrets.GITHUB_TOKEN }}"
global: true

- name: Checkout
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20

- name: Get npm cache directory
id: npm-cache-dir
Expand Down Expand Up @@ -97,4 +97,4 @@ jobs:
# TODO: Rename this stuff for clarity once release build artifacts are being created
# TODO: Cleanup workflows for various event types in general
RELEASE: ${{( github.ref == 'refs/heads/main' || github.ref == 'refs/heads/prerelease') && github.event_name != 'pull_request' && github.event_name != 'pull_request_target' }}
PRERELEASE: ${{ github.ref == 'refs/heads/prerelease' && github.event_name != 'pull_request' && github.event_name != 'pull_request_target' }}
PRERELEASE: ${{ github.ref == 'refs/heads/prerelease' && github.event_name != 'pull_request' && github.event_name != 'pull_request_target' }}

0 comments on commit bc6aeff

Please sign in to comment.