We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96aadb6 commit f5a81b6Copy full SHA for f5a81b6
1 file changed
.github/workflows/main.yml
@@ -22,14 +22,13 @@ jobs:
22
# Steps represent a sequence of tasks that will be executed as part of the job
23
steps:
24
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
25
- - uses: actions/checkout@v2
26
- - uses: actions/setup-node@v2-beta
+ - uses: actions/checkout@v4
+ - name: Enable corepack
27
+ run: corepack enable pnpm
28
+ - uses: actions/setup-node@v4
29
with:
- node-version: '16.3.0'
- - name: install pnpm
30
- uses: pnpm/action-setup@v2.0.1
31
- with:
32
- version: 6.8.0
+ node-version: 18
+ cache: 'pnpm'
33
- run: pnpm install
34
- run: pnpm test:coverage
35
- run: pnpm test:report
0 commit comments