Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix ci template #693

Merged
merged 1 commit into from
Jun 21, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions packages/create-qawolf/static/github.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
- uses: actions/cache@v1
with:
path: ~/.npm
key: $\{{ runner.os }}-node-$\{{ hashFiles('**/package-lock.json') }}
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
$\{{ runner.os }}-node-
${{ runner.os }}-node-

- run: npm install

Expand All @@ -34,14 +34,14 @@ jobs:
env:
# configure tests with environment variables
FFMPEG_PATH: /usr/bin/ffmpeg # for recording video
QAW_ARTIFACT_PATH: $\{{ github.workspace }}/artifacts
QAW_ARTIFACT_PATH: ${{ github.workspace }}/artifacts
# you can also use GitHub secrets for environment variables
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets
# LOGIN_PASSWORD: $\{{ secrets.PASSWORD }}
# LOGIN_PASSWORD: ${{ secrets.PASSWORD }}

- name: Upload Artifacts
if: always()
uses: actions/upload-artifact@master
with:
name: qawolf
path: $\{{ github.workspace }}/artifacts
path: ${{ github.workspace }}/artifacts