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 94f3108 commit f661fb4Copy full SHA for f661fb4
.github/workflows/nodejs.yml
@@ -26,6 +26,26 @@ jobs:
26
- name: project check
27
run: |
28
npm i
29
- npm run release
+ npm run clearCache
30
+ npm run build
31
+ npm run lint
32
+ npm run test:unit
33
+ env:
34
+ CI: true
35
+
36
+ e2e-chrome:
37
38
+ runs-on: windows-latest
39
40
+ steps:
41
+ - uses: actions/checkout@v1
42
+ - name: Use Node.js ${{ matrix.node-version }}
43
+ uses: actions/setup-node@v1
44
+ with:
45
+ node-version: 12
46
+ - name: e2e chrome test
47
+ run: |
48
+ npm i
49
+ npm run test:e2e
50
env:
51
CI: true
0 commit comments