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 0a54a29 commit ab0e572Copy full SHA for ab0e572
.github/workflows/test.yml
@@ -1,4 +1,4 @@
1
-name: Run Tests and Lint
+name: Build, Test, and Deploy
2
3
on:
4
push:
@@ -18,14 +18,19 @@ jobs:
18
- name: Set up Node.js
19
uses: actions/setup-node@v3
20
with:
21
- node-version: '18'
+ node-version: '20' # Use Node.js 18.x version (or specify your Node version)
22
cache: 'pnpm'
23
24
+ # Install pnpm globally
25
- name: Install pnpm
26
run: npm install -g pnpm
27
28
+ # Install project dependencies using pnpm
29
- name: Install dependencies
30
run: pnpm install
31
32
+ # Run tests
33
- name: Run tests
34
run: pnpm test
35
+
36
+ # Optionally, add a build or deployment step here if required
0 commit comments