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 123deea commit cd39905Copy full SHA for cd39905
.github/workflows/visual-dom-diff.yml
@@ -0,0 +1,37 @@
1
+name: Pull request checks
2
+
3
+on:
4
+ pull_request:
5
+ branches: [ master ]
6
7
+env:
8
+ GH_TOKEN: ${{ secrets.GH_ADMIN_TOKEN }}
9
10
11
+jobs:
12
+ build:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - name: Checkout repository
16
+ uses: actions/checkout@v4
17
+ with:
18
+ fetch-depth: 0
19
+ token: ${{ env.GH_TOKEN }}
20
21
+ - name: Set up Node.js
22
+ uses: actions/setup-node@v4
23
24
+ node-version: 20
25
+ cache: 'npm'
26
27
+ - name: Install npm dependencies
28
+ run: npm ci
29
30
+ - name: Run Prettier check
31
+ run: npm run prettier
32
33
+ - name: Run TSLint
34
+ run: npm run tslint
35
36
+ - name: Build and test
37
+ run: npm run build
.travis.yml
0 commit comments