Skip to content

Commit 81ffe58

Browse files
committed
chore: add pull request workflow for automated builds and dependency management
1 parent 610228a commit 81ffe58

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

.github/workflows/pull.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Pull Request Workflow
2+
3+
on:
4+
pull_request:
5+
types:
6+
- opened
7+
- synchronize
8+
paths-ignore:
9+
- "*.md"
10+
push:
11+
branches:
12+
- feats/workflows/pull
13+
14+
jobs:
15+
build:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: Checkout repository
19+
uses: actions/checkout@v3
20+
21+
- name: Install Node v22
22+
uses: actions/setup-node@v3
23+
with:
24+
node-version: 22
25+
cache: npm
26+
27+
- name: Install Bun
28+
run: npm i bun -g
29+
30+
- name: Install dependencies
31+
run: bun install
32+
33+
- name: Build typescript files
34+
run: npm run build
35+

0 commit comments

Comments
 (0)