Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3 to 4. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.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@v4
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v4
|
|
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
|