Skip to content

Commit

Permalink
fix: workflow version (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
ssi02014 authored May 9, 2024
1 parent e2cf90e commit e0bc58e
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout πŸ””
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Node Setup πŸ””
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 20
registry-url: 'https://registry.npmjs.org'
Expand All @@ -26,7 +26,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout πŸ””
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Node Setup πŸ””
uses: actions/setup-node@v4
with:
node-version: 20
registry-url: 'https://registry.npmjs.org'
- name: Install & Build πŸ”¨
run: |
yarn
Expand Down

0 comments on commit e0bc58e

Please sign in to comment.