mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 09:46:30 -05:00
8588cbbf21
This is recommended by the OpenSSF scorecard tool Signed-off-by: Erik Michelson <github@erik.michelson.eu>
68 lines
1.8 KiB
YAML
68 lines
1.8 KiB
YAML
# SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
name: Commons / Run unit tests & build
|
|
|
|
on:
|
|
push:
|
|
branches: [ develop ]
|
|
pull_request:
|
|
branches: [ develop ]
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.job }}
|
|
cancel-in-progress: true
|
|
|
|
defaults:
|
|
run:
|
|
working-directory: commons
|
|
|
|
jobs:
|
|
changes:
|
|
name: Check for commons changes
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
pull-requests: read
|
|
outputs:
|
|
changed: ${{ github.event_name == 'push' || steps.changed.outputs.files }}
|
|
steps:
|
|
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
|
if: github.event_name != 'push'
|
|
|
|
- name: Check for frontend file changes
|
|
if: github.event_name != 'push'
|
|
uses: dorny/paths-filter@4512585405083f25c027a35db413c2b3b9006d50 # v2.11.1
|
|
id: changed
|
|
with:
|
|
filters: |
|
|
files:
|
|
- 'commons/**'
|
|
- '.github/**'
|
|
- '.yarn/**'
|
|
|
|
build:
|
|
needs: changes
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
node: [ '14', '16', '18' ]
|
|
name: Test and build with NodeJS ${{ matrix.node }}
|
|
steps:
|
|
- name: Checkout repository
|
|
if: needs.changes.outputs.changed == 'true'
|
|
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
|
|
|
- name: Setup node
|
|
if: needs.changes.outputs.changed == 'true'
|
|
uses: ./.github/actions/setup-node
|
|
with:
|
|
NODE_VERSION: ${{ matrix.node }}
|
|
|
|
- name: Test Project
|
|
if: needs.changes.outputs.changed == 'true'
|
|
run: yarn test
|
|
|
|
- name: Build project
|
|
if: needs.changes.outputs.changed == 'true'
|
|
run: yarn build
|