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 e0981d9 commit 085cf41Copy full SHA for 085cf41
.github/workflows/ci.yml
@@ -0,0 +1,21 @@
1
+name: Tests
2
+on: [push]
3
+jobs:
4
+ build:
5
+ runs-on: ubuntu-latest
6
+ environment: ci
7
+ strategy:
8
+ matrix:
9
+ node-version: ['20.x', '21.x']
10
+ steps:
11
+ - uses: actions/checkout@v4
12
+
13
+ # Node.js environment
14
+ - name: Setup Node.js ${{ matrix.node-version }}
15
+ uses: actions/setup-node@v3
16
+ with:
17
+ node-version: ${{ matrix.node-version }}
18
+ - name: Install NPM dependencies
19
+ run: npm ci
20
+ - name: Run Mocha
21
+ run: npm run test
.npmignore
@@ -1,3 +1,4 @@
+.github
.vscode
eslint.config.mjs
test
0 commit comments