* wording * add pr creation * Update translations.yml * Update translations.yml * update translation workflow * Update CONTRIBUTING.md * Update CONTRIBUTING.md * Update CONTRIBUTING.md * skip ci update * skip ci update * update conditions * remove empty line * typo * tee test * cleanup * pass data between steps * opt for step output over env variable * remove space * create script * wording * fix fork protection, re-add pr run * updates * Update translations.yml * adjust for new source paths * update comment * wording Co-authored-by: ebbit1q <ebbit1q@gmail.com> * wording * reorder * reorder * fix deprecation of set-output * fix version --------- Co-authored-by: ebbit1q <ebbit1q@gmail.com>
52 lines
970 B
YAML
52 lines
970 B
YAML
name: Build Web
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- '.github/workflows/web-*.yml'
|
|
- 'webclient/**'
|
|
- '!**.md'
|
|
pull_request:
|
|
paths:
|
|
- '.github/workflows/web-*.yml'
|
|
- 'webclient/**'
|
|
- '!**.md'
|
|
|
|
jobs:
|
|
build-web:
|
|
name: React (Node ${{matrix.node_version}})
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
defaults:
|
|
run:
|
|
working-directory: webclient
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
node_version:
|
|
- 16
|
|
- lts/*
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: ${{matrix.node_version}}
|
|
cache: 'npm'
|
|
cache-dependency-path: 'webclient/package-lock.json'
|
|
|
|
- name: Install dependencies
|
|
run: npm clean-install
|
|
|
|
- name: Build app
|
|
run: npm run build
|
|
|
|
- name: Test app
|
|
run: npm run test
|