Merge pull request #7 from thatapicompany/codex/add-bigquery-enrichme… #13
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: Build, Test, and Deploy to Cloud Run | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - master | |
| jobs: | |
| test-build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [22.x] | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: npm install | |
| run: | | |
| npm install | |
| - name: npm test | |
| run: | | |
| npm test | |
| - name: npm test:e2e | |
| run: | | |
| npm run test:e2e | |
| - name: npm build | |
| run: | | |
| npm run build --if-present |