Skip to content

Update dependency

Update dependency #36

Workflow file for this run

name: CI
on:
push:
pull_request:
workflow_dispatch:
jobs:
# allow passing .env vars to the test run
setup:
runs-on: ubuntu-latest
steps:
- run: echo "BIFROST_QUERY_API_KEY=dummykey" >> .env
- uses: actions/cache/save@v4
with:
path: |
.env
key: 'env-1'
ci:
uses: ./.github/workflows/ci-private.yml
# when making public move back to
# uses: silverstripe/gha-ci/.github/workflows/ci.yml@v1
with:
# disable auto detection of JS tests (remove if any JS tests are added)
js: false
secrets:
COMPOSER_AUTH: ${{ secrets.COMPOSER_AUTH }}