Skip to content

chore: automerge

chore: automerge #13

Workflow file for this run

name: Jest
on:
push:
branches:
- main
pull_request:
types: [opened, reopened, synchronize, ready_for_review]
jobs:
Test:
name: Run test codes
if: |
github.event.pull_request.draft == false
&& !startsWith(github.head_ref, 'release')
&& !startsWith(github.head_ref, 'doc')
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install and cache nodejs
uses: actions/setup-node@v4
with:
node-version-file: package.json
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- name: Install packages
run: npm ci
- name: Show coverage
run: npm test -- --bail --maxWorkers=100% --watchAll=false --coverage