Skip to content

chore(deps): bump @babel/helpers from 7.18.2 to 7.28.3 #95

chore(deps): bump @babel/helpers from 7.18.2 to 7.28.3

chore(deps): bump @babel/helpers from 7.18.2 to 7.28.3 #95

Workflow file for this run

name: ci
on:
workflow_dispatch:
push:
branches:
- main
- master
- next
tags:
- '*'
pull_request:
branches:
- main
- master
- next
env:
XDG_CACHE_HOME: ${{ github.workspace }}/.cache
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 24
- name: Cache bigger downloads
uses: actions/cache@v4
id: cache
with:
path: ${{ github.workspace }}/.cache
key: ${{ runner.os }}-${{ hashFiles('package.json', 'package-lock.json') }}
restore-keys: |
${{ runner.os }}-${{ hashFiles('package.json', 'package-lock.json') }}
${{ runner.os }}-
- name: Install dependencies
run: npm ci --prefer-offline --no-audit --progress=false --cache ${{ github.workspace }}/.cache/npm
- name: Build
run: npm run build