chore(homebrew): sync formula for release (#696) #227
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: Live API Tests | |
| on: | |
| push: | |
| branches: [ main ] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| id-token: none | |
| jobs: | |
| live-api-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22.21.1' | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci --ignore-scripts | |
| - name: Build project | |
| run: npm run build | |
| - name: Run live API tests | |
| run: npm run test:live | |
| env: | |
| GITLAB_API_URL: ${{ secrets.GITLAB_API_URL }} | |
| GITLAB_TOKEN: ${{ secrets.GITLAB_TOKEN_TEST }} | |
| GITLAB_PERSONAL_ACCESS_TOKEN: ${{ secrets.GITLAB_PERSONAL_ACCESS_TOKEN }} | |
| PROJECT_ID: ${{ secrets.TEST_PROJECT_ID }} | |
| GITLAB_PROJECT_ID: ${{ secrets.TEST_PROJECT_ID }} | |
| TEST_PROJECT_ID: ${{ secrets.TEST_PROJECT_ID }} | |