Skip to content
This repository has been archived by the owner on Dec 26, 2023. It is now read-only.

fix(deps): update dependency express-rate-limit to ^7.1.5 #111

fix(deps): update dependency express-rate-limit to ^7.1.5

fix(deps): update dependency express-rate-limit to ^7.1.5 #111

Workflow file for this run

name: server-test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v4.1.1
- name: Cache node modules
uses: actions/cache@v3.3.2
with:
path: node_modules
key: ${{ runner.OS }}-build-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.OS }}-build-${{ env.cache-name }}-
${{ runner.OS }}-build-
${{ runner.OS }}-
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4.0.0
with:
node-version: ${{ matrix.node-version }}
- run: yarn
- run: yarn test