Fix Google auth for dev & prod #1334
Workflow file for this run
This file contains 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: Test | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
NODE_OPTIONS: "--max_old_space_size=4096" | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
cache: "yarn" | |
- name: Register yarn 1.x cache folder | |
id: yarn-cache-folder | |
shell: bash | |
run: | | |
echo "path=$(yarn cache dir)" >> $GITHUB_OUTPUT | |
- name: Setup yarn 3.x | |
run: | | |
corepack enable | |
corepack prepare yarn@stable --activate | |
yarn --version | |
- name: Install packages | |
env: | |
YARN_CACHE_FOLDER: ${{ steps.yarn-cache-folder.outputs.path }} | |
run: yarn install --immutable | |
- name: Check format | |
run: yarn format:ci | |
- name: Run linter | |
run: yarn lint:ci | |
- name: Run tests | |
env: | |
CI: true | |
run: yarn test | |
- name: Build | |
run: yarn build | |
# this is needed to ensure that actions/setup-node will pick up yarn cache | |
- name: Remove yarn 3.5 | |
run: corepack disable |