Skip to content

Commit ed84c08

Browse files
committed
ci: update node to 18
1 parent 428de26 commit ed84c08

File tree

1 file changed

+20
-21
lines changed

1 file changed

+20
-21
lines changed

.github/workflows/ci.yml

Lines changed: 20 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -13,24 +13,23 @@ jobs:
1313
ci:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v3
17-
- uses: pnpm/action-setup@v2
18-
with:
19-
version: latest
20-
- uses: actions/setup-node@v3
21-
with:
22-
node-version: '14'
23-
cache: 'pnpm'
24-
- name: Install dependencies
25-
run: pnpm install --frozen-lockfile
26-
- name: Build
27-
run: pnpm build
28-
- name: Unit tests
29-
run: pnpm test
30-
- name: Coveralls
31-
if: ${{ success() }}
32-
uses: coverallsapp/github-action@master
33-
with:
34-
github-token: ${{ secrets.GITHUB_TOKEN }}
35-
path-to-lcov: "./coverage/lcov.info"
36-
16+
- uses: actions/checkout@v3
17+
- uses: pnpm/action-setup@v2
18+
with:
19+
version: latest
20+
- uses: actions/setup-node@v3
21+
with:
22+
node-version: "18"
23+
cache: "pnpm"
24+
- name: Install dependencies
25+
run: pnpm install --frozen-lockfile
26+
- name: Build
27+
run: pnpm build
28+
- name: Unit tests
29+
run: pnpm test
30+
- name: Coveralls
31+
if: ${{ success() }}
32+
uses: coverallsapp/github-action@master
33+
with:
34+
github-token: ${{ secrets.GITHUB_TOKEN }}
35+
path-to-lcov: "./coverage/lcov.info"

0 commit comments

Comments
 (0)