2022-09-03 21:35:46 +03:00
|
|
|
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
|
2022-09-05 22:33:01 +03:00
|
|
|
|
2022-09-03 21:35:46 +03:00
|
|
|
name: Build webapp
|
|
|
|
steps:
|
2022-11-24 02:04:20 +03:00
|
|
|
- id: skip_check
|
|
|
|
uses: fkirc/skip-duplicate-actions@v5
|
|
|
|
with:
|
|
|
|
concurrent_skipping: 'same_content_newer'
|
2023-02-16 01:46:45 +03:00
|
|
|
|
2022-09-03 21:35:46 +03:00
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
2022-09-05 22:33:01 +03:00
|
|
|
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
|
2022-09-03 21:35:46 +03:00
|
|
|
|
2023-02-16 01:46:45 +03:00
|
|
|
- name: Cache node modules
|
2023-03-15 05:13:59 +03:00
|
|
|
uses: actions/cache@v3
|
2023-02-16 01:46:45 +03:00
|
|
|
env:
|
|
|
|
cache-name: cache-node-modules-bundle-web-app
|
|
|
|
with:
|
|
|
|
path: ~/.npm
|
|
|
|
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('web/package-lock.json') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-build-${{ env.cache-name }}-
|
|
|
|
${{ runner.os }}-build-
|
|
|
|
${{ runner.os }}-
|
|
|
|
|
2022-09-03 21:35:46 +03:00
|
|
|
- name: Install Dependencies
|
|
|
|
run: npm install
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: npm run build
|