Skip to content

Commit

Permalink
Fix CI (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
ranile authored Jul 27, 2021
1 parent a929cf7 commit d903f7d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/publish-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,12 @@ jobs:
echo "CHANNEL_ID=live" >> $GITHUB_ENV
- name: Deploy to Firebase
uses: FirebaseExtended/action-hosting-deploy@v0
uses: siku2/action-hosting-deploy@v1
with:
repoToken: "${{ secrets.GITHUB_TOKEN }}"
firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_GLOO_RS }}'
channelId: "${{ env.CHANNEL_ID }}"
# PR information
prNumber: "${{ env.PR_NUMBER }}"
prBranchName: "${{ env.PR_BRANCH }}"
commitSHA: "${{ env.COMMIT_SHA }}"
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,6 @@ jobs:
- name: Run tests
run: |
for x in $(ls crates); do
wasm-pack test --headless --firefox --chrome crates/$x -- --all-features
wasm-pack test --headless --firefox --chrome crates/$x -- --no-default-features
wasm-pack test --headless --firefox --chrome crates/$x --all-features
wasm-pack test --headless --firefox --chrome crates/$x --no-default-features
done

0 comments on commit d903f7d

Please sign in to comment.