Skip to content

build(deps): bump form-data from 4.0.1 to 4.0.4 in the npm_and_yarn group across 1 directory #135

build(deps): bump form-data from 4.0.1 to 4.0.4 in the npm_and_yarn group across 1 directory

build(deps): bump form-data from 4.0.1 to 4.0.4 in the npm_and_yarn group across 1 directory #135

Workflow file for this run

name: check
on:
push:
branches: main
pull_request:
branches: "*"
jobs:
check:
name: check
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Validate package.json
run: |
node -e "JSON.parse(require('fs').readFileSync('package.json','utf8'))"
- name: Clear Yarn Cache
run: yarn cache clean
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Audit Dependencies
run: yarn audit
continue-on-error: true
- name: Test Project
run: yarn run test
- name: Check liniting
run: yarn run lint:ci
continue-on-error: true
- name: Build Project
run: yarn run build