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 6e94888 commit 1b9a4b8Copy full SHA for 1b9a4b8
2 files changed
.github/workflows/ci.yml
@@ -0,0 +1,23 @@
1
+on:
2
+ push:
3
+ branches-ignore:
4
+ - "gh-pages"
5
+jobs:
6
+ build:
7
+ runs-on: ${{ matrix.os }}
8
+ strategy:
9
+ matrix:
10
+ os: ["ubuntu-latest", "macos-latest", "windows-latest"]
11
+ node: ["18", "22"]
12
+ name: Node.js ${{ matrix.node }} on ${{ matrix.os }}
13
+ steps:
14
+ - uses: actions/checkout@v3
15
+ - name: Setup node
16
+ uses: actions/setup-node@v3
17
+ with:
18
+ node-version: ${{ matrix.node }}
19
+ - run: npm install
20
+ - run: npm run lint
21
+ - run: npm test
22
+env:
23
+ YARN_GPG: no
.travis.yml
0 commit comments