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.
2 parents efc7aa3 + 01fc92d commit 06c7e3dCopy full SHA for 06c7e3d
.github/workflows/ci.yml
@@ -1,9 +1,6 @@
1
name: CI
2
3
-on:
4
- push:
5
- branches:
6
- - master
+on: [pull_request]
7
8
jobs:
9
CI:
@@ -20,7 +17,7 @@ jobs:
20
17
- name: Use Node.js (.nvmrc)
21
18
uses: actions/setup-node@v2
22
19
with:
23
- node-version: "${{ steps.nvm.outputs.NVMRC }}"
+ node-version: '${{ steps.nvm.outputs.NVMRC }}'
24
25
- name: Use cached node_modules
26
uses: actions/cache@v1
.github/workflows/release.yml
@@ -18,6 +18,8 @@ jobs:
node-version: 'lts/*'
- name: Install dependencies
run: yarn
+ - name: Build
+ run: yarn build
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments