We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0a9909 commit fbb459cCopy full SHA for fbb459c
1 file changed
.github/workflows/test-vale-styles.yml
@@ -0,0 +1,23 @@
1
+name: Vale npm tests
2
+
3
+on:
4
+ pull_request:
5
+ paths:
6
+ - ValeStyles/**
7
8
+jobs:
9
+ npm-test:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: checkout repo
13
+ uses: actions/checkout@v4
14
15
+ - uses: actions/setup-node@v4
16
+ with:
17
+ node-version: 22
18
19
+ - name: npm test
20
+ working-directory: ./ValeStyles
21
+ run: |
22
+ npm ci
23
+ npm test
0 commit comments