2021-01-06 15:36:07 -05:00
|
|
|
# SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
2021-01-05 17:02:12 -05:00
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
|
|
|
|
name: Nest.JS CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ develop ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ develop ]
|
|
|
|
|
2022-03-06 15:05:40 -05:00
|
|
|
env:
|
2022-04-26 08:31:58 -04:00
|
|
|
NODEJS_VERSION: 18
|
2022-03-06 15:05:40 -05:00
|
|
|
|
2021-01-05 17:02:12 -05:00
|
|
|
jobs:
|
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
command:
|
|
|
|
- yarn run lint
|
2021-02-16 04:28:55 -05:00
|
|
|
- yarn run format
|
2021-01-05 17:02:12 -05:00
|
|
|
steps:
|
2022-03-05 04:36:39 -05:00
|
|
|
- uses: actions/checkout@v3
|
2022-03-06 15:05:40 -05:00
|
|
|
- name: Use Node.js ${{ env.NODEJS_VERSION }}
|
2022-02-26 06:19:26 -05:00
|
|
|
uses: actions/setup-node@v3
|
2021-01-05 17:02:12 -05:00
|
|
|
with:
|
2022-03-06 15:05:40 -05:00
|
|
|
node-version: ${{ env.NODEJS_VERSION }}
|
2021-09-05 12:14:18 -04:00
|
|
|
cache: 'yarn'
|
|
|
|
- run: yarn install --immutable
|
2021-01-05 17:02:12 -05:00
|
|
|
- run: ${{matrix.command}}
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-06-05 16:00:06 -04:00
|
|
|
node-version: [ 14.x, 16.x, 18.x ]
|
2021-01-05 17:02:12 -05:00
|
|
|
steps:
|
2022-03-05 04:36:39 -05:00
|
|
|
- uses: actions/checkout@v3
|
2021-01-05 17:02:12 -05:00
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
2022-02-26 06:19:26 -05:00
|
|
|
uses: actions/setup-node@v3
|
2021-01-05 17:02:12 -05:00
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
2021-09-05 12:14:18 -04:00
|
|
|
cache: 'yarn'
|
|
|
|
- run: yarn install --immutable
|
2021-01-05 17:02:12 -05:00
|
|
|
- run: yarn run build
|
|
|
|
|
|
|
|
integration-tests:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-03-05 04:36:39 -05:00
|
|
|
- uses: actions/checkout@v3
|
2021-01-06 07:17:30 -05:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2022-03-06 15:05:40 -05:00
|
|
|
- name: Use Node.js ${{ env.NODEJS_VERSION }}
|
2022-02-26 06:19:26 -05:00
|
|
|
uses: actions/setup-node@v3
|
2021-01-05 17:02:12 -05:00
|
|
|
with:
|
2022-03-06 15:05:40 -05:00
|
|
|
node-version: ${{ env.NODEJS_VERSION }}
|
2021-09-05 12:14:18 -04:00
|
|
|
cache: 'yarn'
|
|
|
|
- run: yarn install --immutable
|
2021-01-06 06:38:33 -05:00
|
|
|
- run: yarn run test:cov
|
2022-04-09 20:02:23 -04:00
|
|
|
- uses: codecov/codecov-action@v3
|
2021-01-06 06:38:33 -05:00
|
|
|
with:
|
|
|
|
directory: coverage
|
|
|
|
flags: integration-tests
|