fix(docs): pin typedoc source links to main instead of commit SHA #138
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Integration Tests | ||
|
Check failure on line 1 in .github/workflows/integration-test.yml
|
||
| on: | ||
| schedule: | ||
| - cron: '0 6 * * 1' | ||
| workflow_dispatch: | ||
| jobs: | ||
| integration: | ||
| runs-on: ubuntu-latest | ||
| if: ${{ vars.LILY_TEST_BASE_URL != '' && secrets.LILY_TEST_API_KEY != '' }} | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: 20 | ||
| cache: npm | ||
| - run: npm ci | ||
| - run: npm run test:integration | ||
| env: | ||
| LILY_TEST_BASE_URL: ${{ vars.LILY_TEST_BASE_URL }} | ||
| LILY_TEST_API_KEY: ${{ secrets.LILY_TEST_API_KEY }} | ||