Skip to content

chore(deps): update typescript-eslint monorepo to v6.13.2 #922

chore(deps): update typescript-eslint monorepo to v6.13.2

chore(deps): update typescript-eslint monorepo to v6.13.2 #922

name: Node.js CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
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 }}
- run: npm ci
- run: npm run build --if-present
integration-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
needs: [build]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Start Docker-Compose
run: cd tests && docker-compose up -d
- name: Install npm
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- name: Run migrations for test
run: cd tests/src/apps/app-knex && npx knex migrate:up
- name: Run tests e2e
run: npm run test:e2e
- name: Stop Docker-Compose
run: cd tests && docker-compose down