Skip to content

Commit

Permalink
Github workflow (Setup node & pnpm)
Browse files Browse the repository at this point in the history
  • Loading branch information
kingdevnl committed Apr 30, 2023
1 parent 8296517 commit ea321de
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Build
on:
push: {}

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8
install: true
run_install: true

0 comments on commit ea321de

Please sign in to comment.