Skip to content

Commit

Permalink
Merge pull request #743 from jfbenckhuijsen/feature/fix-quarkus-snaps…
Browse files Browse the repository at this point in the history
…hot-ci

Potential fix for failing CI quarkus snapshot test workflow
  • Loading branch information
loicmathieu authored Jan 17, 2025
2 parents 08eaf76 + 5330d31 commit d87ad53
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/quarkus-snapshot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,20 @@ jobs:
repository: ${{ env.ECOSYSTEM_CI_REPO }}
path: ecosystem-ci

- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
cache-dependency-path: firebase-devservices/deployment/src/test/functions/package-lock.json

- uses: bahmutov/npm-install@v1
with:
working-directory: firebase-devservices/deployment/src/test/functions

- name: Setup and Run Tests
run: ./ecosystem-ci/setup-and-test
run: |
export CURRENT_USER=$(id -u)
export CURRENT_GROUP=$(id -g)
./ecosystem-ci/setup-and-test
env:
ECOSYSTEM_CI_TOKEN: ${{ secrets.ECOSYSTEM_CI_TOKEN }}

0 comments on commit d87ad53

Please sign in to comment.