Skip to content

Commit f5f7e74

Browse files
committed
ok
1 parent 468304b commit f5f7e74

File tree

4 files changed

+7
-12
lines changed

4 files changed

+7
-12
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- uses: actions/checkout@v3
1111
- uses: actions/setup-node@v3
1212
with:
13-
node-version: 16
13+
node-version: 18
1414

1515
- name: Cache node modules
1616
id: cache-yarn

.github/workflows/npm-publish-canary.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- uses: actions/checkout@v3
2222
- uses: actions/setup-node@v3
2323
with:
24-
node-version: 18
24+
node-version: 16
2525
registry-url: https://npm.pkg.github.com/
2626
- name: Cache node modules
2727
id: cache-yarn

.github/workflows/npm-publish-stable.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,8 @@ jobs:
4646
${{ runner.os }}-build-
4747
${{ runner.os }}-
4848
49-
- if: ${{ steps.cache-yarn.outputs.cache-hit != 'true' }}
50-
name: List the state of node modules
51-
continue-on-error: true
52-
run: yarn list
53-
5449
- name: Install Dependencies
55-
run: NO_YARN_POSTINSTALL=1 yarn install
50+
run: NO_YARN_POSTINSTALL=1 yarn install --frozen-lockfile
5651

5752
- name: Yarn Build
5853
run: yarn build

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
workflow_dispatch:
88

99
jobs:
10-
run_tests:
10+
test:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v3
@@ -27,11 +27,11 @@ jobs:
2727
restore-keys: |
2828
${{ runner.os }}-yarn-
2929
30-
- name: Install Dependencies
30+
- name: 📦 Install Dependencies
3131
run: yarn install --frozen-lockfile
3232

33-
- name: Yarn Build
33+
- name: 🔨 Build
3434
run: yarn build
3535

36-
- name: Test
36+
- name: 🧪 Test
3737
run: yarn test

0 commit comments

Comments
 (0)