Changes to metaUpload and metaDownload inside connect-s3 #22
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
- push | |
- pull_request | |
jobs: | |
quality-checks: | |
name: Quality Checks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20.10.0 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8.15.0 | |
run_install: false | |
- name: Install Dependencies | |
run: pnpm install --frozen-lockfile --ignore-scripts | |
- name: Lint Check | |
run: pnpm lint:check | |
- name: Format Check | |
run: pnpm format:check | |
- name: Run Tests | |
run: pnpm test |