Skip to content

Fix/dev 3 authentication integration #36

Fix/dev 3 authentication integration

Fix/dev 3 authentication integration #36

Workflow file for this run

name: Atlas 3.0 CI
on:
pull_request:
branches:
- main
- epic/*
jobs:
test:
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false
env:
VITE_FIREBASE_KEY: {{ secrets.VITE_FIREBASE_KEY }}

Check failure on line 15 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / Atlas 3.0 CI

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 15, Col: 26): A mapping was not expected
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup NodeJS
uses: actions/setup-node@v4
with:
node-version: 20
cache: "yarn"
- name: Install Firebase Emulator Suite
run: npm install -g firebase-tools
- name: Install dependencies
run: yarn
- name: Run Vitest
run: firebase emulators:exec "yarn test"