Skip to content

Commit

Permalink
test: add test build
Browse files Browse the repository at this point in the history
  • Loading branch information
Vann-Dev committed May 5, 2024
1 parent baefc78 commit 1c90122
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/test-build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Test Build

on:
push:

jobs:
build:
runs-on: ubuntu-latest
steps:

- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20

- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 8

- name: Check out code
uses: actions/checkout@8459bc0c7e3759cdf591f513d9f141a95fef0a8f

- name: Install dependencies
run: pnpm install

- name: Build
run: pnpm run build

0 comments on commit 1c90122

Please sign in to comment.