Skip to content

chore(deps-dev): bump @babel/core from 7.28.3 to 7.28.4 (#1070) #1278

chore(deps-dev): bump @babel/core from 7.28.3 to 7.28.4 (#1070)

chore(deps-dev): bump @babel/core from 7.28.3 to 7.28.4 (#1070) #1278

on: push
jobs:
tests:
name: Build and run tests
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22, 24]
steps:
- run: set -e
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Cache Node.js modules
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- run: npm ci
- run: npm run pull-submodules
- run: npm run prepare-templates
- run: npm run lint
- run: npm run test:ci
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- run: npm run build --if-present