Skip to content

Bump express-rate-limit from 7.1.3 to 7.1.4 #39834

Bump express-rate-limit from 7.1.3 to 7.1.4

Bump express-rate-limit from 7.1.3 to 7.1.4 #39834

Workflow file for this run

name: Lint Heimdall
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-22.04
services:
postgres:
image: postgres:latest
env:
POSTGRES_PASSWORD: postgres
ports:
- 5432:5432
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'yarn'
- name: Install project dependencies
run: yarn install --frozen-lockfile
- name: Run lint
run: yarn run lint:ci