Skip to content

Revert "Bump multer from 1.4.4-lts.1 to 2.0.2" #22

Revert "Bump multer from 1.4.4-lts.1 to 2.0.2"

Revert "Bump multer from 1.4.4-lts.1 to 2.0.2" #22

Workflow file for this run

# This workflow will run each time a PR is opened or updated
name: CI Checks
on: push
env:
NODE_VERSION: 20
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v4
- name: "Setup"
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
registry-url: https://npm.pkg.github.com/
cache: "npm"
- name: "Install dependencies"
run: npm install --from-lock-file
- name: "Run tests"
run: npm test
lint:
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v4
- name: "Setup"
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
registry-url: https://npm.pkg.github.com/
cache: "npm"
- name: "Install dependencies"
run: npm install --from-lock-file
- name: "Lint"
run: npm run lint