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 850f182 commit 5632d1bCopy full SHA for 5632d1b
.github/workflows/node.js.yml
@@ -0,0 +1,29 @@
1
+name: Node.js CI
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
12
+ runs-on: ubuntu-latest
13
+ defaults:
14
+ run:
15
+ working-directory: ./src/ui
16
17
+ strategy:
18
+ matrix:
19
+ node-version: ["18.x", "20.x"]
20
21
+ steps:
22
+ - uses: actions/checkout@v4
23
+ - name: Use Node.js ${{ matrix.node-version }}
24
+ uses: actions/setup-node@v3
25
+ with:
26
+ node-version: ${{ matrix.node-version }}
27
28
+ - run: npm install pnpm -g
29
+ - run: pnpm install
0 commit comments