Skip to content

Commit

Permalink
chore: use lts node version in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
SgtPooki committed Sep 12, 2024
1 parent ed21af7 commit dd42462
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 18.14.0
node-version: lts/*
cache: 'npm'

# Separate cache for build dir, we reuse it in release publish workflow
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 18.14.0
node-version: lts/*
cache: 'npm'

- name: Cache build output
Expand Down Expand Up @@ -245,7 +245,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 18.14.0
node-version: lts/*
cache: 'npm'

- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/depcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 18.14.0
node-version: lts/*
cache: 'npm'

- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/eslint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 18.14.0
node-version: lts/*
cache: 'npm'

- name: Install dependencies
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 18.14.0
node-version: lts/*
cache: 'npm'

- name: Cache test-build output
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 18.14.0
node-version: lts/*
cache: 'npm'

- name: Cache test-build output
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 18.14.0
node-version: lts/*
cache: 'npm'

- name: Cache nyc_output dir
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-storybook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 18.14.0
node-version: lts/*
cache: 'npm'

- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 18.14.0
node-version: lts/*
cache: 'npm'

- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/typecheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 18.14.0
node-version: lts/*
cache: 'npm'

- name: Install dependencies
Expand Down

0 comments on commit dd42462

Please sign in to comment.