Skip to content

Ensure default expiration parameter is set for presigned URLs (#1313) #1001

Ensure default expiration parameter is set for presigned URLs (#1313)

Ensure default expiration parameter is set for presigned URLs (#1313) #1001

Workflow file for this run

name: CI - Lint/Build
on:
push:
branches-ignore:
- dependabot/**
pull_request:
branches:
- master
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'npm'
- run: npm ci
- run: npm run format-check
- run: npm run lint
build:
name: Build on node lts
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'npm'
- run: npm ci
- run: npm run type-check
- run: npm run build