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 8228cfa commit 1e1bc69Copy full SHA for 1e1bc69
.github/workflows/main.yml
@@ -7,20 +7,21 @@ jobs:
7
runs-on: ubuntu-latest
8
9
steps:
10
- - name: Checkout
11
- uses: actions/checkout@v2
+ - name: Checkout
+ uses: actions/checkout@v2
12
13
- - name: Use Node.js 10.x
14
- uses: actions/setup-node@v1
15
- with:
16
- node-version: 10.x
+ - name: Use Node.js 10.x
+ uses: actions/setup-node@v1
+ with:
+ node-version: 10.x
17
18
- - name: Prepare and deploy
19
- env:
20
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21
- run: |
22
- cd src
23
- npm run build
24
- npm run test
25
- cd dist
26
- sudo npm link
+ - name: Prepare and deploy
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ run: |
+ cd src
+ npm install --silent
+ npm run build
+ npm run test
+ cd dist
27
+ sudo npm link
0 commit comments