Skip to content

Commit

Permalink
Setup node version in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
fwal committed Mar 12, 2024
1 parent cbaec96 commit d38f890
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- run: npm install
- run: npm run format-check
- run: npm test
Expand All @@ -33,6 +34,7 @@ jobs:
swift: "5.6.3"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- run: npm install
- run: npm run build && npm run pack-source-map
- uses: ./
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/draft-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v4

- name: Update Release Draft
id: release_draft
uses: release-drafter/release-drafter@v5
Expand Down

0 comments on commit d38f890

Please sign in to comment.