Skip to content

EdgeFunctionsのバンドル時にプロジェクトで使用している環境変数が設定されていないとエラーになったので環境変数を追加した。 #14

EdgeFunctionsのバンドル時にプロジェクトで使用している環境変数が設定されていないとエラーになったので環境変数を追加した。

EdgeFunctionsのバンドル時にプロジェクトで使用している環境変数が設定されていないとエラーになったので環境変数を追加した。 #14

name: Node.js Unit Tests
on:
push:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
environment:
name: develop
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run Unit Tests
env:
FIREBASE_API_KEY: ${{ secrets.FIREBASE_API_KEY }}
run: npm run test