Skip to content

Commit

Permalink
Merge pull request #3 from hunghg255/hunghg255-patch-1
Browse files Browse the repository at this point in the history
Update main.yml
  • Loading branch information
hunghg255 committed Sep 9, 2023
2 parents 5c82c45 + 19ea630 commit 8399df2
Showing 1 changed file with 19 additions and 7 deletions.
26 changes: 19 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,27 @@ on:
pull_request:
branches:
- master

jobs:
build:
name: build-app
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Checkout repo
uses: actions/checkout@v3
- name: Install bun
uses: oven-sh/setup-bun@v1
- name: Install dependencies
run: bun install
- name: Build app
run: bun run build
# jobs:
# build:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - uses: actions/setup-node@v3
# with:
# node-version: 18.x

- run: npm install
- run: npm run lint && npm run build
# - run: npm install
# - run: npm run lint && npm run build

0 comments on commit 8399df2

Please sign in to comment.