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 bb9ccd4 commit 657e946Copy full SHA for 657e946
.github/workflows/build.yml
@@ -0,0 +1,28 @@
1
+name: Build
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
7
+jobs:
8
+ build:
9
+ runs-on: ubuntu-latest
10
11
+ strategy:
12
+ matrix:
13
+ node-version: [lts/*]
14
15
+ steps:
16
+ - name: Checkout repository
17
+ uses: actions/checkout@v4
18
19
+ - name: Use Node.js ${{ matrix.node-version }}
20
+ uses: actions/setup-node@v4
21
+ with:
22
+ node-version: ${{ matrix.node-version }}
23
24
+ - name: Install dependencies
25
+ run: npm install
26
27
+ - name: Run tests
28
+ run: npm test
0 commit comments