Skip to content

Bump @babel/preset-env from 7.24.5 to 7.24.6 (#343) #579

Bump @babel/preset-env from 7.24.5 to 7.24.6 (#343)

Bump @babel/preset-env from 7.24.5 to 7.24.6 (#343) #579

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