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 e22edb3Copy full SHA for e22edb3
.github/workflows/ci.yml
@@ -0,0 +1,26 @@
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
+ - name: Checkout repo
15
+ uses: actions/checkout@v3
16
+ with:
17
+ fetch-depth: 0
18
+ - name: Setup node
19
+ uses: actions/setup-node@v3
20
21
+ node-version: ${{ matrix.node }}
22
+ - run: npm install
23
+ - run: npm run lint
24
+ - run: npm test
25
+env:
26
+ YARN_GPG: no
.travis.yml
0 commit comments