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