Add newly added transaction filters to CSV endpoint #430
Workflow file for this run
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: CI | |
on: [push] | |
env: | |
CI: true | |
TZ: UTC | |
E2E_TEST: 1 | |
NODE_ENV: ci | |
PGHOST: localhost | |
PGUSER: postgres | |
REST_URL: http://localhost:3003 | |
API_URL: http://localhost:3060 | |
API_KEY: dvl-1510egmf4a23d80342403fb599qd | |
API_FOLDER: /home/runner/work/opencollective-rest/opencollective-rest/opencollective-api | |
REST_FOLDER: /home/runner/work/opencollective-rest/opencollective-rest | |
PG_DATABASE: opencollective_dvl | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- name: Update apt | |
run: sudo apt-get update || exit 0 | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: 'package.json' | |
# Npm cache | |
- name: Restore .npm cache | |
uses: actions/cache@v4 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-npm-cache-${{ github.sha }} | |
restore-keys: | | |
- ${{ runner.os }}-npm-cache-${{ github.sha }} | |
- ${{ runner.os }}-npm-cache- | |
- name: Restore node_modules | |
uses: actions/cache@v4 | |
id: node-modules | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-node-modules-${{ hashFiles('package-lock.json') }} | |
- name: Install dependencies | |
if: steps.node-modules.outputs.cache-hit != 'true' | |
run: npm ci --prefer-offline --no-audit | |
- run: npm run lint:quiet | |
prettier: | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- name: Update apt | |
run: sudo apt-get update || exit 0 | |
- name: Install graphicsmagick | |
run: sudo apt-get install -y graphicsmagick | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: 'package.json' | |
# Npm cache | |
- name: Restore .npm cache | |
uses: actions/cache@v4 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-npm-cache-${{ github.sha }} | |
restore-keys: | | |
- ${{ runner.os }}-npm-cache-${{ github.sha }} | |
- ${{ runner.os }}-npm-cache- | |
- name: Restore node_modules | |
uses: actions/cache@v4 | |
id: node-modules | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-node-modules-${{ hashFiles('package-lock.json') }} | |
- name: Install dependencies | |
if: steps.node-modules.outputs.cache-hit != 'true' | |
run: npm ci --prefer-offline --no-audit | |
- run: npm run prettier:check | |
depcheck: | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- name: Update apt | |
run: sudo apt-get update || exit 0 | |
- name: Install graphicsmagick | |
run: sudo apt-get install -y graphicsmagick | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: 'package.json' | |
# Npm cache | |
- name: Restore .npm cache | |
uses: actions/cache@v4 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-npm-cache-${{ github.sha }} | |
restore-keys: | | |
- ${{ runner.os }}-npm-cache-${{ github.sha }} | |
- ${{ runner.os }}-npm-cache- | |
- name: Restore node_modules | |
uses: actions/cache@v4 | |
id: node-modules | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-node-modules-${{ hashFiles('package-lock.json') }} | |
- name: Install dependencies | |
if: steps.node-modules.outputs.cache-hit != 'true' | |
run: npm ci --prefer-offline --no-audit | |
- run: npm run depcheck | |
test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
services: | |
redis: | |
image: redis | |
ports: | |
- 6379:6379 | |
options: --entrypoint redis-server | |
postgres: | |
image: postgres:13.14 | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_DB: postgres | |
POSTGRES_HOST_AUTH_METHOD: trust | |
ports: | |
- 5432:5432 | |
# needed because the postgres container does not provide a healthcheck | |
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 | |
steps: | |
- name: Update apt | |
run: sudo apt-get update || exit 0 | |
- name: Install postgresql-client | |
run: sudo apt-get install -y postgresql-client | |
# Checkouts | |
- name: Checkout (rest) | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: 'package.json' | |
# Npm cache | |
- name: Restore .npm cache | |
uses: actions/cache@v4 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-npm-cache-${{ github.sha }} | |
restore-keys: | | |
- ${{ runner.os }}-npm-cache-${{ github.sha }} | |
- ${{ runner.os }}-npm-cache- | |
# Prepare API | |
- name: Checkout (api) | |
uses: actions/checkout@v4 | |
with: | |
repository: opencollective/opencollective-api | |
path: opencollective-api | |
- name: Restore node_modules (api) | |
uses: actions/cache@v4 | |
id: api-node-modules | |
with: | |
path: opencollective-api/node_modules | |
key: ${{ runner.os }}-api-node-modules-${{ hashFiles('opencollective-api/package-lock.json') }} | |
- name: Install dependencies (api) | |
working-directory: opencollective-api | |
if: steps.api-node-modules.outputs.cache-hit != 'true' | |
run: npm ci --prefer-offline --no-audit | |
- name: Build (api) | |
working-directory: opencollective-api | |
if: steps.api-build.outputs.cache-hit != 'true' | |
run: npm run build | |
# Prepare Rest | |
- name: Restore node_modules (rest) | |
uses: actions/cache@v4 | |
id: rest-node-modules | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-rest-node-modules-${{ hashFiles('package-lock.json') }} | |
- name: Install dependencies (rest) | |
if: steps.rest-node-modules.outputs.cache-hit != 'true' | |
run: npm ci --prefer-offline --no-audit | |
- name: Build (rest) | |
run: npm run build | |
# Prepare DB | |
- name: Restore DB | |
working-directory: opencollective-api | |
run: npm run db:restore | |
- name: Migrate DB | |
working-directory: opencollective-api | |
run: npm run db:migrate | |
# Run test | |
- name: Run test | |
run: ./scripts/run_test.sh |