Skip to content

chore: 🤖 update github yml and jest config #19

chore: 🤖 update github yml and jest config

chore: 🤖 update github yml and jest config #19

Workflow file for this run

name: feature-branch
on:
push:
branches:
- '*'
- '*/*'
- '**'
- '!master'
jobs:
CI:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'npm'
- name: Install node modules
run: npm ci
- name: Test
run: npm run test