Skip to content

Identify potential memory leaks and make get req in every 15 minutes #52

Identify potential memory leaks and make get req in every 15 minutes

Identify potential memory leaks and make get req in every 15 minutes #52

Workflow file for this run

name: Node.js CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-expensify:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: install dependencies
run: npm install
- name: Run CI
run: npm run ci
- name: Build Expensify
run: npm run build --if-present