Skip to content

Commit 086bda7

Browse files
committed
4
1 parent 62f3b47 commit 086bda7

File tree

1 file changed

+7
-10
lines changed

1 file changed

+7
-10
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,19 @@ jobs:
66
name: Test on Node 16
77
steps:
88
- name: Checkout
9-
uses: actions/checkout@v2
10-
11-
- uses: pnpm/[email protected]
9+
uses: actions/checkout@v3
1210

1311
- name: Setup Node
1412
uses: actions/setup-node@v3
1513
with:
1614
node-version: 16
17-
cache: pnpm
1815
# - uses: bahmutov/npm-install@v1
19-
- run: pnpm install --no-frozen-lockfile
20-
- run: pnpm build
21-
- run: pnpm compile
22-
- run: pnpm test
16+
- run: npm install
17+
- run: npm run build
18+
- run: npm run compile
19+
- run: npm run test
2320

2421
- name: Upload coverage report on Node 16 to coveralls.io...
25-
uses: coverallsapp/github-action@master
22+
uses: coverallsapp/github-action@v1.1.2
2623
with:
27-
github-token: ${{ secrets.GITHUB_TOKEN }}
24+
github-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)