Skip to content

Commit

Permalink
Added build script for web project
Browse files Browse the repository at this point in the history
  • Loading branch information
nroh555 committed Jun 6, 2024
1 parent 66af019 commit e20f69f
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build-web.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build DEV

on:
push:
branches:
- "**"

jobs:
BuildApp:
runs-on: ubuntu-latest
environment: DEV
defaults:
run:
working-directory: ./web

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20

- run: yarn

- name: Build
run: yarn build

0 comments on commit e20f69f

Please sign in to comment.