Skip to content

core: editor config and gitattributes configured #3

core: editor config and gitattributes configured

core: editor config and gitattributes configured #3

Workflow file for this run

name: Build
on:
push:
branches:
- "**"
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Install dependencies
run: pnpm install
- name: Performing Type Check
run: pnpm run typecheck
- name: Performing Lint
run: pnpm run lint
- name: Performing Format
run: pnpm run format
- name: Performing Build
run: pnpm run build