Skip to content

chore(deps-dev): bump @babel/cli from 7.24.8 to 7.25.6 #183

chore(deps-dev): bump @babel/cli from 7.24.8 to 7.25.6

chore(deps-dev): bump @babel/cli from 7.24.8 to 7.25.6 #183

Workflow file for this run

name: CI Test
on:
workflow_call:
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18, 19, 20]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run linter
run: yarn run lint
- name: Run tests
run: yarn run testonly