Skip to content

Commit

Permalink
feat: use node 20 in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
jordiroig-tf committed Feb 23, 2024
1 parent 0a2c468 commit cf92de1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
9 changes: 9 additions & 0 deletions .github/workflows/test-and-release-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ jobs:
npm config set '//npm.pkg.github.com/:_authToken' ${{ secrets.GITHUB_TOKEN }}
npm config set @typeform:registry https://npm.pkg.github.com/
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: |
yarn install
- run: |
Expand All @@ -25,6 +28,9 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Test all checks
uses: ./
with:
Expand All @@ -51,6 +57,9 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Semantic Release
id: semantic
uses: codfish/semantic-release-action@4e9fa8ec064813465dfeccac8ae70f1348fb5dec
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/verify-transpiled-code.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: 20
Expand Down

0 comments on commit cf92de1

Please sign in to comment.