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 849d521 commit 28c7bc1Copy full SHA for 28c7bc1
.github/workflows/ci.yml
@@ -32,3 +32,25 @@ jobs:
32
uses: gerrit0/circular-dependency-check@v2
33
with:
34
entry: dist/index.js
35
+ build-windows:
36
+ runs-on: windows-latest
37
+ name: Node 18 Windows
38
+ steps:
39
+ - name: Checkout repository
40
+ uses: actions/checkout@v3
41
+ - name: Set up Node
42
+ uses: actions/setup-node@v3
43
+ with:
44
+ node-version: 18
45
+ - name: Upgrade npm
46
+ run: npm i -g npm@latest
47
+ - name: Install
48
+ run: npm ci
49
+ - name: Build
50
+ run: npm run build
51
+ - name: Test
52
+ run: npm run test:full
53
+ env:
54
+ SKIP_VISUAL_TEST: true
55
+ - name: Lint
56
+ run: npm run lint -- --max-warnings 0
0 commit comments