Skip to content

refactor: convert jest.config.js to jest.config.json #12

refactor: convert jest.config.js to jest.config.json

refactor: convert jest.config.js to jest.config.json #12

Workflow file for this run

name: Build
on:
push:
branches-ignore:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: pnpm/action-setup@v2.4.0
with:
version: 8
- name: Checkout
uses: actions/checkout@v4.1.1
- name: Setup Node
uses: actions/setup-node@v4.0.1
with:
node-version: 18
cache: pnpm
- name: Install Dependencies
run: pnpm install
- name: Build
run: pnpm build
- name: Test
run: pnpm test