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 a658eb4 commit f998d45Copy full SHA for f998d45
2 files changed
.github/workflows/main.yml
@@ -23,13 +23,13 @@ jobs:
23
- name: Set up Node.js
24
uses: actions/setup-node@v3
25
with:
26
- node-version: '18' # Specify your Node.js version here
+ node-version: "18" # Specify your Node.js version here
27
28
- name: Set up pnpm
29
run: |
30
corepack enable
31
- corepack prepare pnpm@7.28.0 --activate
+ corepack prepare pnpm --activate
32
- name: Install dependencies
33
- run: pnpm install --frozen-lockfile
+ run: pnpm install
34
- name: Run integration tests
35
run: pnpm test # Make sure this command runs your integration tests
0 commit comments