Skip to content

feat: google auth

feat: google auth #19

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '22'
# - name: Nx Cloud - Start CI Run
# run: npx nx-cloud start-ci-run --distribute-on="3 linux-medium-js"
# env:
# NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
# NX_BRANCH: ${{ github.ref }}
# NX_RUN_GROUP: ${{ github.run_id }}
- name: Install dependencies
run: npm ci
- name: Run all tests
run: npx nx run-many --target=test --all --parallel
env:
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
# - name: Nx Cloud - Complete CI Run
# run: npx nx-cloud complete-ci-run
# env:
# NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}