Skip to content

Update dependency @babel/core to ^7.25.7 #2303

Update dependency @babel/core to ^7.25.7

Update dependency @babel/core to ^7.25.7 #2303

Workflow file for this run

name: CI
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18
- name: Cache node modules
uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.OS }}-build-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-build-${{ env.cache-name }}-
${{ runner.OS }}-build-
${{ runner.OS }}-
- name: Install Dependencies
run: npm ci && npm link && npm link @cloudfour/eslint-plugin
- name: Run Build
run: npm run build
- name: Run Lint
run: npm run check-lint