1
0
Fork 0

chore: Troubleshooting workflow files

This commit is contained in:
Joost De Cock 2020-03-14 16:31:52 +01:00
parent 351fd73720
commit f14bfb5bae
30 changed files with 120 additions and 240 deletions

View file

@ -19,16 +19,12 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Change directory
run: cd packages/examples
- name: Install dependencies
run: cd packages/examples && npm install
env:
CI: true
run: npm install
- name: Build pattern
run: npm run build --if-present
- name: Where are we?
run: pwd
run: cd packages/examples && npm run build
- name: Show package.json
run: cat package.json
run: cd packages/examples && cat package.json
- name: Run pattern unit tests
run: npm run testonly
run: cd packages/examples && npm run testonly