We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84f6609 commit 0939a9cCopy full SHA for 0939a9c
.github/workflows/pr-test.yml
@@ -0,0 +1,20 @@
1
+name: Test pr integration
2
+on:
3
+ pull_request:
4
+ types: [ synchronize, opened ]
5
+jobs:
6
+
7
+ build:
8
+ name: Test PR
9
+ runs-on: ubuntu-20.04
10
+ steps:
11
12
+ - uses: actions/checkout@v3
13
+ - uses: actions/setup-node@v3
14
+ with:
15
+ node-version: '16.17.0'
16
+ - run: npm ci
17
+ - run: npm run test
18
+ - run: npm run build
19
+ - run: npm run build:docs
20
0 commit comments