Skip to content

Commit

Permalink
feat: github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
jeamxn committed Jan 21, 2025
1 parent 01281ab commit 6313904
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
on:
push:
branches:
- '**'
name: build
jobs:
build:
name: build
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [20.13.1]

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install Bun
run: curl -fsSL https://bun.sh/install | bash
- name: Install all of dependencies
run: bun install
- name: Build
run: bun run build
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
20.13.1

0 comments on commit 6313904

Please sign in to comment.