Skip to content

chore: wip vitest flow #4522

chore: wip vitest flow

chore: wip vitest flow #4522

Workflow file for this run

name: CI Tests
on:
- pull_request
- push
env:
CI: true
jobs:
lint:
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
strategy:
matrix:
node-version:
- 18.x
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- run: npm run lint
unit:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 18.x
- 20.x
- 22.x
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Cache npm
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ matrix.node-version }}-${{ hashFiles('**/package-lock.json') }}
- run: npm ci
- run: npm run test
integration:
needs: "unit"
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 18.x
- 20.x
- 22.x
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Cache npm
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ matrix.node-version }}-${{ hashFiles('**/package-lock.json') }}
- run: npm ci
- run: npm run test:bin
cloud-build-integration:
needs: "unit"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: google-github-actions/auth@v2
with:
credentials_json: "${{ secrets.CF3_INTEGRATION_TEST_GOOGLE_CREDENTIALS }}"
create_credentials_file: true
- name: "Run Cloud Build Integration Tests"
run: |
cd integration_test
PROJECT_ID=cf3-integration-tests-v2-qa gcloud builds submit --config=cloudbuild-all.yaml --project=cf3-integration-tests-v2-qa
env:
PROJECT_ID: ${{ secrets.PROJECT_ID }}