Skip to content

Commit 5b73c0e

Browse files
committed
chore: update workflow
1 parent c3204b9 commit 5b73c0e

File tree

3 files changed

+3
-10
lines changed

3 files changed

+3
-10
lines changed

.github/workflows/GHPages.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,8 @@ jobs:
2626
- name: Checkout
2727
uses: actions/checkout@v4
2828
- uses: actions/setup-node@v4
29-
with:
30-
node-version: 18
3129
- name: Install Packages
32-
run: npm install
30+
run: npm install -f
3331
- name: Build docs
3432
run: |+
3533
npm run docs:build

.github/workflows/Release.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,10 @@ jobs:
1515
with:
1616
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
1717
fetch-depth: 0
18-
1918
- name: Setup Node.js 16
2019
uses: actions/setup-node@v4
21-
with:
22-
node-version: 16
23-
2420
- name: Install Dependencies
25-
run: npm install
26-
21+
run: npm install -f
2722
- name: Create Release Pull Request or Publish to npm
2823
id: changesets
2924
uses: changesets/action@v1

.github/workflows/format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Setup node
1414
uses: actions/setup-node@v4
1515
- name: Install deps
16-
run: npm install
16+
run: npm install -f
1717
- name: Format
1818
run: npm run eslint-fix
1919
- name: Commit

0 commit comments

Comments
 (0)