Skip to content

Wait with login until ready #220

Wait with login until ready

Wait with login until ready #220

Workflow file for this run

name: CI
on:
push:
branches:
- 'main'
- 'feature/**'
paths-ignore:
- '.devcontainer/**'
- 'docs/**'
- 'tools/**'
- '.editorconfig'
- '.git*'
- '**.md'
pull_request:
types: [opened, reopened, synchronize]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: 'npm'
- name: Generate empty configuration
run: echo "export default {};" > ./src/firebase/config.ts
- name: Install
run: npm ci
- name: Build
run: npm run build -- --modern
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: 'npm'
- name: Generate empty configuration
run: echo "export default {};" > ./src/firebase/config.ts
- name: Install
run: npm ci
- name: Lint
run: npm run lint -- --no-fix