Skip to content

Commit

Permalink
github action prod build on MR (#200)
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeknovy authored Jan 6, 2022
1 parent f173ec8 commit 0c48f20
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 34 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Build
on:
pull_request:
# The branches below must be a subset of the branches above
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install modules
run: npm install
- name: Run Prod Build
run: npm run build:prod
34 changes: 0 additions & 34 deletions .github/workflows/docker-hub-v4.yml

This file was deleted.

0 comments on commit 0c48f20

Please sign in to comment.