Skip to content

build(deps-dev): bump @babel/preset-env from 7.23.2 to 7.26.0 #2094

build(deps-dev): bump @babel/preset-env from 7.23.2 to 7.26.0

build(deps-dev): bump @babel/preset-env from 7.23.2 to 7.26.0 #2094

Workflow file for this run

name: CI Check
on:
push:
branches: [ master, develop ]
pull_request:
branches: [ master, develop ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v4
- name: Cache npm dependencies
id: cache-npm
uses: actions/cache@v4
env:
cache-name: cache-node-modules
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install & Check
run: |
npm install
npm run ci-check