Skip to content

Commit

Permalink
chore(ci): add build when push action
Browse files Browse the repository at this point in the history
  • Loading branch information
j10ccc committed Jul 23, 2023
1 parent a495607 commit ab22058
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Run Build
on:
- push

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: '18.x'

- uses: pnpm/action-setup@v2
name: Install pnpm
id: pnpm-install
with:
version: 8
run_install: false

- name: Install dependencies
run: pnpm install

- name: Build
run: pnpm build

0 comments on commit ab22058

Please sign in to comment.