You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
713 B
33 lines
713 B
name: Webapp Test Build |
|
|
|
# This action works with pull requests and pushes |
|
on: |
|
push: |
|
paths: |
|
- web/** |
|
pull_request: |
|
paths: |
|
- web/** |
|
|
|
jobs: |
|
build: |
|
runs-on: ubuntu-latest |
|
defaults: |
|
run: |
|
working-directory: ./web |
|
|
|
name: Build webapp |
|
steps: |
|
- name: Checkout |
|
uses: actions/checkout@v3 |
|
with: |
|
# Make sure the actual branch is checked out when running on pull requests |
|
ref: ${{ github.event.pull_request.head.ref }} |
|
repository: ${{ github.event.pull_request.head.repo.full_name }} |
|
fetch-depth: 0 |
|
|
|
- name: Install Dependencies |
|
run: npm install |
|
|
|
- name: Build |
|
run: npm run build
|
|
|