Skip to content

Bump body-parser from 1.20.1 to 1.20.3 #1203

Bump body-parser from 1.20.1 to 1.20.3

Bump body-parser from 1.20.1 to 1.20.3 #1203

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