Skip to content

Commit

Permalink
Use LTS Node version in CI workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
AlecRust committed Jan 13, 2024
1 parent f695eba commit 48ea8d3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 19
node-version: "lts/*"
cache: "npm"
- name: Install Node packages
run: npm ci
Expand All @@ -44,7 +44,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 19
node-version: "lts/*"
cache: "npm"
- name: Install Node packages
run: npm ci
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 19
node-version: "lts/*"
cache: "npm"
- name: Install Node packages
run: npm ci
Expand All @@ -31,7 +31,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 19
node-version: "lts/*"
cache: "npm"
- name: Install Node packages
run: npm ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.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: 19
node-version: "lts/*"
cache: "npm"
- name: Install Node packages
run: npm ci
Expand Down

0 comments on commit 48ea8d3

Please sign in to comment.