Skip to content

Commit bbc718d

Browse files
authored
chore(ci): remove redundnant comments and config (#152)
1 parent adc9476 commit bbc718d

File tree

2 files changed

+5
-11
lines changed

2 files changed

+5
-11
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,11 @@ jobs:
1313

1414
steps:
1515
- uses: actions/checkout@v3
16-
- name: Use Node.js ${{ matrix.node-version }}
17-
uses: actions/setup-node@v3
16+
- uses: actions/setup-node@v3
1817
with:
1918
node-version: ${{ matrix.node-version }}
2019
cache: "yarn"
21-
- name: Install dependencies
22-
run: yarn
20+
- run: yarn
2321
- run: yarn lint
2422
- run: yarn build
2523
- run: yarn test

.github/workflows/push.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,16 @@ jobs:
1111
needs: call-build
1212
runs-on: ubuntu-latest
1313
steps:
14-
- name: Checkout Repo
15-
uses: actions/checkout@v3
14+
- uses: actions/checkout@v3
1615
with:
1716
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
1817
fetch-depth: 0
1918

20-
- name: Setup Node.js 16.x
21-
uses: actions/setup-node@v3
19+
- uses: actions/setup-node@v3
2220
with:
23-
node-version: "16"
2421
cache: "yarn"
2522

26-
- name: Install Dependencies
27-
run: yarn
23+
- run: yarn
2824

2925
- name: Create Release Pull Request or Publish to npm
3026
id: changesets

0 commit comments

Comments
 (0)