Skip to content
This repository was archived by the owner on Nov 15, 2024. It is now read-only.

Commit a42d5f2

Browse files
authored
fix: Use last known working workflow for npm-semantic-release (#235)
1 parent 535c07b commit a42d5f2

3 files changed

Lines changed: 7 additions & 5 deletions

File tree

.github/workflows/npm-prettier.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,5 @@ jobs:
1515
uses: actions/setup-node@v2
1616
with:
1717
node-version: 18
18-
cache: "yarn"
1918
- run: yarn install
2019
- run: yarn format:check

.github/workflows/npm-semantic-release.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,13 @@ jobs:
1212
runs-on: ubuntu-20.04
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v3
16-
- name: Setup
17-
uses: ./.github/actions/setup
15+
uses: actions/checkout@v1
16+
- name: Setup Node.js
17+
uses: actions/setup-node@v2
18+
with:
19+
node-version: "18.x"
20+
- name: Install dependencies
21+
run: yarn install
1822
- name: Release
1923
env:
2024
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

.github/workflows/npm-test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ jobs:
6262
uses: actions/setup-node@v2
6363
with:
6464
node-version: 18
65-
cache: "yarn"
6665

6766
- run: yarn install --frozen-lockfile
6867
- run: yarn test -T 3m

0 commit comments

Comments
 (0)