Skip to content

Bump @types/lodash from 4.14.191 to 4.17.13 in /backend #824

Bump @types/lodash from 4.14.191 to 4.17.13 in /backend

Bump @types/lodash from 4.14.191 to 4.17.13 in /backend #824

Workflow file for this run

name: backend-pr
on:
pull_request:
paths:
- "backend/**"
defaults:
run:
shell: bash
working-directory: backend
jobs:
dryDeploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- run: npm ci
- name: Generate routes
run: npm run routes
- name: Deploy dry run
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID}}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY}}
run: npm run deploy:dry
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- run: npm ci
- name: Generate routes
run: npm run routes
- run: npm run lint:strict
types:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- run: npm ci
- name: Generate routes
run: npm run routes
- run: npm run types