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 6539dc3 commit 838343fCopy full SHA for 838343f
.github/workflows/publish.yml
@@ -16,11 +16,15 @@ jobs:
16
uses: actions/setup-node@v2
17
with:
18
node-version: 12.x
19
- registry-url: 'https://npm.pkg.github.com'
+ registry-url: "https://npm.pkg.github.com"
20
- name: install
21
run: yarn install
22
+ - name: test
23
+ run: yarn run test
24
+ env:
25
+ CI: true
26
- name: build
- run: yarn build
27
+ run: yarn run build
28
- name: publish
29
run: |
30
npx can-npm-publish --verbose && npm publish
.github/workflows/test.yml
@@ -23,6 +23,6 @@ jobs:
- name: yarn install, and test
yarn install
- yarn test
+ yarn run test
env:
CI: true
0 commit comments