canary 1.9.x release #402
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: Main | |
on: | |
pull_request: | |
paths: | |
- "**" | |
- "!*.md" | |
- "!**/*.md" | |
- "!.gitignore" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
FIREBASE_API_KEY: AIzaSyAXYgJha6lO_L4qfWpnhf3KijeKYDhuFzQ | |
FIREBASE_PROJECT_ID: next-firebase-auth-edge-demo | |
FIREBASE_ADMIN_CLIENT_EMAIL: ${{ secrets.FIREBASE_ADMIN_CLIENT_EMAIL }} | |
FIREBASE_ADMIN_PRIVATE_KEY: ${{ secrets.FIREBASE_ADMIN_PRIVATE_KEY }} | |
FIREBASE_AUTH_TENANT_ID: ${{ secrets.FIREBASE_AUTH_TENANT_ID }} | |
FIREBASE_APP_CHECK_KEY: ${{ secrets.FIREBASE_APP_CHECK_KEY }} | |
FIREBASE_APP_ID: ${{ secrets.FIREBASE_APP_ID }} | |
jobs: | |
install: | |
name: Install dependencies | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
cache: "yarn" | |
cache-dependency-path: yarn.lock | |
node-version: 20 | |
- name: Cache node_modules | |
uses: actions/cache@v4 | |
with: | |
path: | | |
node_modules | |
key: ${{ runner.os }}-node_modules-cache-v2-${{ hashFiles('./yarn.lock') }}-${{github.sha}} | |
restore-keys: | | |
${{ runner.os }}-node_modules-cache-v2-${{ hashFiles('./yarn.lock') }}- | |
- run: yarn install | |
build: | |
name: Build packages | |
timeout-minutes: 15 | |
needs: install | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Cache node_modules | |
uses: actions/cache@v4 | |
with: | |
path: | | |
node_modules | |
key: ${{ runner.os }}-node_modules-cache-v2-${{ hashFiles('./yarn.lock') }}-${{github.sha}} | |
- name: Cache build | |
uses: actions/cache@v4 | |
with: | |
path: | | |
lib | |
key: ${{ runner.os }}-build-cache-v2-${{ github.ref_name }}-${{github.sha}} | |
restore-keys: | | |
${{ runner.os }}-build-cache-v2-${{ github.ref_name }}- | |
- run: yarn build | |
lint: | |
name: Lint packages | |
timeout-minutes: 10 | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Cache node_modules | |
uses: actions/cache@v4 | |
with: | |
path: | | |
node_modules | |
key: ${{ runner.os }}-node_modules-cache-v2-${{ hashFiles('./yarn.lock') }}-${{github.sha}} | |
- run: yarn lint | |
tests: | |
name: Tests | |
timeout-minutes: 15 | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Cache node_modules | |
uses: actions/cache@v4 | |
with: | |
path: | | |
node_modules | |
key: ${{ runner.os }}-node_modules-cache-v2-${{ hashFiles('./yarn.lock') }}-${{github.sha}} | |
- name: Cache build | |
uses: actions/cache@v4 | |
with: | |
path: | | |
lib | |
key: ${{ runner.os }}-build-cache-v2-${{ github.ref_name }}-${{github.sha}} | |
- run: yarn test |