Skip to content
This repository has been archived by the owner on Jan 4, 2024. It is now read-only.

Commit

Permalink
chore(deploy.yaml): use node version 18
Browse files Browse the repository at this point in the history
  • Loading branch information
flovogt authored Oct 5, 2023
1 parent 4528183 commit 109b3cc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Setup Node.js environment
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: "14.x"
node-version: "18.x"

- run: npm install
- run: npm run build
Expand All @@ -34,4 +34,4 @@ jobs:
# Set a generated GITHUB_TOKEN for pushing to the remote branch.
github_token: ${{ secrets.GITHUB_TOKEN }}
# Set an input directory for deployment.
publish_dir: dist
publish_dir: dist

0 comments on commit 109b3cc

Please sign in to comment.