Skip to content

Commit 1a6797a

Browse files
committed
👷 Remove testing from ci
1 parent 5d41a26 commit 1a6797a

File tree

2 files changed

+1
-23
lines changed

2 files changed

+1
-23
lines changed

.github/workflows/release.yml

-21
Original file line numberDiff line numberDiff line change
@@ -12,27 +12,6 @@ on:
1212
jobs:
1313
run:
1414
runs-on: ubuntu-latest
15-
steps:
16-
- uses: actions/checkout@v3
17-
- uses: actions/setup-node@v3
18-
with:
19-
node-version: "16"
20-
- name: Cache target
21-
id: yarn-cache-dir-path
22-
run: echo "::set-output name=dir::$(yarn cache dir)"
23-
- name: Cache
24-
uses: actions/cache@v1
25-
id: yarn-cache
26-
with:
27-
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
28-
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
29-
restore-keys: ${{ runner.os }}-yarn-
30-
- run: yarn install
31-
- run: yarn test
32-
33-
build:
34-
runs-on: ubuntu-latest
35-
needs: run
3615
if: github.event.pull_request.merged == true || startsWith(github.event.head_commit.message, ':bookmark:')
3716
steps:
3817
- uses: actions/checkout@v3

package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@
1818
},
1919
"license": "MIT",
2020
"scripts": {
21-
"build": "tsup index.ts --keep-names --clean --dts --minify",
22-
"test": "yarn build && mocha"
21+
"build": "tsup index.ts --keep-names --clean --dts --minify"
2322
},
2423
"dependencies": {
2524
"extend": "^3.0.2",

0 commit comments

Comments
 (0)