Skip to content

chore(deps): bump serialize-javascript and terser-webpack-plugin #263

chore(deps): bump serialize-javascript and terser-webpack-plugin

chore(deps): bump serialize-javascript and terser-webpack-plugin #263

Workflow file for this run

name: pr-checks
on:
pull_request:
branches:
- main
- dev
jobs:
pr-checks:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Download and install the gitleaks binary
run: |
curl -sL https://github.com/gitleaks/gitleaks/releases/download/v8.30.0/gitleaks_8.30.0_linux_x64.tar.gz | tar xz
sudo mv gitleaks /usr/local/bin/
- name: Run gitleaks scan
run: gitleaks detect --exit-code 1 --verbose
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npm run lint:check
- name: Run Prettier Check
run: npm run format:check
- name: Run Tests
run: npm run test:ci