Skip to content

ci: add build and test workflow #1

ci: add build and test workflow

ci: add build and test workflow #1

Workflow file for this run

name: Build
on:
push:
branches:
- main
- develop
pull_request:
branches:
- "**"
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Enable Corepack
run: corepack enable
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm run build