Skip to content
This repository was archived by the owner on May 4, 2023. It is now read-only.

Commit ec7a6d8

Browse files
committed
fix test
1 parent ffa1c7a commit ec7a6d8

File tree

1 file changed

+8
-13
lines changed

1 file changed

+8
-13
lines changed

.github/workflows/test.yml

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,13 @@ jobs:
1818
uses: actions/setup-node@v1
1919
with:
2020
node-version: 14
21-
cache: npm
2221

23-
- name: npm install
24-
run: |
25-
npm install
26-
27-
- name: npm test
28-
env:
29-
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
30-
run: |
31-
npm run build
22+
- name: Install Packages
23+
run: npm install
24+
- name: Build and Test
25+
run: npm run build && npm test
26+
- name: Lint
27+
run: npm run lint
28+
- name: Package
29+
run: npm run package
3230
npm run package
33-
npm run lint
34-
npm exec tsc
35-
npm run test

0 commit comments

Comments
 (0)