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 d401e5b commit f9aa395Copy full SHA for f9aa395
1 file changed
.github/workflows/test.yml
@@ -0,0 +1,37 @@
1
+name: Run Tests
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - develop
7
+ paths:
8
+ - '**.html'
9
+ - '**.js'
10
+ - '**.json'
11
+ - '**.css'
12
+ - '!dist/engine/core/**'
13
+ pull_request:
14
15
16
17
18
19
20
21
22
23
+jobs:
24
+ lint:
25
26
+ runs-on: ubuntu-latest
27
28
+ steps:
29
+ - uses: actions/checkout@v1
30
+ - name: Install Dependencies
31
+ uses: Borales/actions-yarn@v2.0.0
32
+ with:
33
+ cmd: install # will run `yarn install` command
34
+ - name: Run Tests
35
36
37
+ cmd: test # will run `yarn test` command
0 commit comments