Skip to content

chore(deps-dev): bump @babel/core from 7.29.0 to 7.29.6 #105

chore(deps-dev): bump @babel/core from 7.29.0 to 7.29.6

chore(deps-dev): bump @babel/core from 7.29.0 to 7.29.6 #105

Workflow file for this run

name: Test CI
on:
pull_request:
branches: ['*']
push:
branches: ['dev', 'staging', 'main']
jobs:
test:
name: Test on Push / Pull-Request
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
# checkout the repository
- name: Checkout repository
uses: actions/checkout@v4
# setup node
- name: Setup Node
uses: actions/setup-node@v4
with:
cache-dependency-path: package-lock.json
node-version: ${{ matrix.node-version }}
cache: npm
# install dependencies
- name: Install dependencies
run: npm ci
# run code formatter
- name: Code Formatter
run: npm run format
# run lint test
- name: Lint Test
run: npm run lint
# run unit test
- name: Unit Test
run: npm run test