Skip to content

Commit

Permalink
core: github actions workflow configured
Browse files Browse the repository at this point in the history
  • Loading branch information
vgseven committed Aug 8, 2024
1 parent db6e965 commit 2e7d4f7
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
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

0 comments on commit 2e7d4f7

Please sign in to comment.