Skip to content

Bump @babel/plugin-transform-parameters from 7.24.7 to 7.25.7 #1273

Bump @babel/plugin-transform-parameters from 7.24.7 to 7.25.7

Bump @babel/plugin-transform-parameters from 7.24.7 to 7.25.7 #1273

Workflow file for this run

name: "NPM Lint & Build"
on:
pull_request:
push:
jobs:
lint:
name: "Lint & Build"
runs-on: ${{ matrix.operating-system }}
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
node-version:
- "18"
operating-system:
- "ubuntu-latest"
experimental:
- false
include:
- node-version: "19"
operating-system: "ubuntu-latest"
experimental: true
steps:
- name: "Checkout"
uses: "actions/checkout@v4"
- name: "NPM install"
uses: ./.github/actions/npm
with:
node-version: '${{ matrix.node-version }}'
- name: "Lint"
run: npm run lint -- --format unix
- name: "Build"
run: npm run build