We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2eeae6d commit 48e41abCopy full SHA for 48e41ab
.github/workflows/tests.yaml
@@ -0,0 +1,36 @@
1
+name: Tests
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - 'master/**'
7
+ - 'feature/**'
8
+ - 'documentation/**'
9
+ - 'improvement/**'
10
+ - 'bugfix/**'
11
+ - 'w/**'
12
+ - 'q/**'
13
+ - 'hotfix/**'
14
+ - 'task/**'
15
+ - 'release/**'
16
+ - 'main'
17
18
+jobs:
19
+ tests:
20
+ runs-on: ubuntu-latest
21
+ steps:
22
+ - name: Checkout
23
+ uses: actions/checkout@v3
24
+ - name: Install deps
25
+ run: sudo apt-get update -q
26
+ - uses: actions/setup-node@v3
27
+ with:
28
+ node-version: '16'
29
+ - name: Install Yarn
30
+ run: npm install -g yarn
31
+ - name: install dependencies
32
+ run: yarn install --frozen-lockfile
33
+ - name: run lint
34
+ run: yarn run eslint
35
+ - name: run build
36
+ run: yarn build
0 commit comments