Skip to content

Bump @babel/core from 7.23.9 to 7.24.6 #571

Bump @babel/core from 7.23.9 to 7.24.6

Bump @babel/core from 7.23.9 to 7.24.6 #571

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [lts/*, current]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4.0.2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Analyze TypeScript files
run: npm run-script lint:js
- name: Check types
run: npm run-script lint:ts
- name: Analyze CSS files
run: npm run-script lint:css