We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5862f5 commit ee29421Copy full SHA for ee29421
1 file changed
.github/workflows/test.yml
@@ -15,5 +15,24 @@ jobs:
15
runs-on: ubuntu-latest
16
steps:
17
- uses: actions/checkout@v2
18
- - run: yarn
19
- - run: yarn test
+ - uses: actions/setup-node@v2
+ with:
20
+ node-version: '14'
21
+ cache: 'yarn'
22
+ - run: yarn install
23
+ - run: yarn lint
24
+ - run: yarn test:only
25
+
26
+ build:
27
+ runs-on: ubuntu-latest
28
+ steps:
29
+ - uses: actions/checkout@v2
30
31
32
33
34
35
+ - run: yarn build:dist
36
+ - run: yarn build:es5
37
+ - run: yarn build:es6
38
+ - run: yarn build:examples
0 commit comments