Skip to content

Bump @babel/preset-env from 7.18.10 to 7.25.7 #462

Bump @babel/preset-env from 7.18.10 to 7.25.7

Bump @babel/preset-env from 7.18.10 to 7.25.7 #462

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
node-version: ['20', '22']
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install Hugo
uses: peaceiris/[email protected]
with:
hugo-version: '0.115.4'
extended: true
- name: Check install Hugo
run: hugo version
- name: Install dependencies
run: npm ci
- name: Check for linting errors
run: npm test
- name: Delete temporary directories
run: npm run clean
- name: Build production website
run: npm run build