Skip to content

chore(deps-dev): bump @babel/core from 7.27.1 to 7.27.3 #230

chore(deps-dev): bump @babel/core from 7.27.1 to 7.27.3

chore(deps-dev): bump @babel/core from 7.27.1 to 7.27.3 #230

Workflow file for this run

name: CI
on: [push]
env:
CI: true
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
- name: npm install and lint
run: |
npm ci
npm run-script lint
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 18.x, 16.x]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- run: npm run build
- run: npm run test