Skip to content

Bump serve-static from 1.15.0 to 1.16.2 #1204

Bump serve-static from 1.15.0 to 1.16.2

Bump serve-static from 1.15.0 to 1.16.2 #1204

Workflow file for this run

name: Run test suite
on: [pull_request]
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node-version: [22.x]
steps:
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Checkout repository
uses: actions/checkout@v3
- name: Install dependencies
run: yarn install
- name: Create env file
run: |
touch .env
echo DEV_FIREBASE_URL_PREFIX=${{ secrets.DEV_FIREBASE_URL_PREFIX }} >> .env
cat .env
- name: Run test command
env:
APP_ENV: development
run: yarn run test-ci