Skip to content

Commit

Permalink
create build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
hminsky2002 committed Sep 6, 2024
1 parent b9aee73 commit 529fad3
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Build
on:
pull_request:
push:
jobs:
run_lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: 'front-end/.node-version'
- name: Install dependencies
working-directory: ./front-end
run: npm ci
- name: Build vite application
working-directory: ./front-end
run: npm run build

0 comments on commit 529fad3

Please sign in to comment.