Skip to content

Bump form-data from 4.0.0 to 4.0.4 #67

Bump form-data from 4.0.0 to 4.0.4

Bump form-data from 4.0.0 to 4.0.4 #67

Workflow file for this run

---
name: Node.js package
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: ["20.x", "21.x"]
steps:
- uses: actions/checkout@v4
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install dependencies
run: yarn install --frozen-lockfile
- run: yarn lint
- run: yarn test
...