Skip to content

chore(deps-dev): Bump @types/node from 20.16.15 to 22.7.9 #278

chore(deps-dev): Bump @types/node from 20.16.15 to 22.7.9

chore(deps-dev): Bump @types/node from 20.16.15 to 22.7.9 #278

Workflow file for this run

name: Integration tests
on: [push, pull_request]
jobs:
test_integration:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 17.x, 18.x, 19.x, 20.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run integration tests
run: npm run test:integration
env:
CI: true