Skip to content

chore(deps): update dependency knex to v3 #2663

chore(deps): update dependency knex to v3

chore(deps): update dependency knex to v3 #2663

Workflow file for this run

name: Security Scan / Gauntlt
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
build-and-test:
if: "!contains(github.event.head_commit.message, '[ci skip]')"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
with:
submodules: true
- name: Setup Node.js environment
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1
with:
node-version: lts/*
registry-url: https://npm.pkg.github.com
cache: npm
- name: Install dependencies
run: npm ci --ignore-scripts
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Run postinstall scripts
run: npm rebuild && npm run prepare --if-present
- name: Run gauntlt scan
run: docker-compose -f docker-compose-ci.yml up --build --abort-on-container-exit --renew-anon-volumes
env:
GPR_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}