Skip to content

Commit

Permalink
Create build-frontend.yml (#94)
Browse files Browse the repository at this point in the history
  • Loading branch information
K0IN committed Aug 28, 2023
1 parent e781358 commit 61649f2
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/build-frontend.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Build frontend

on:
push:
branches:
- "*"
schedule:
- cron: "39 12 * * 6"

jobs:
run-linter:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2

- uses: actions/setup-node@v3
with:
node-version: 'latest'

- name: Install dependencies
run: npm install
working-directory: ./app/frontend

- name: Build
run: npm run build
working-directory: ./app/frontend

# - name: Build
# run: npm run lint
# working-directory: ./app/frontend

0 comments on commit 61649f2

Please sign in to comment.