2021-01-06 20:37:59 +00:00
|
|
|
# SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
2020-11-22 20:50:07 +00:00
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2020-08-31 10:48:58 +00:00
|
|
|
name: test, build
|
2020-05-27 13:43:28 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2020-08-15 14:17:06 +00:00
|
|
|
branches: [main]
|
2020-05-27 13:43:28 +00:00
|
|
|
pull_request:
|
2020-08-15 14:17:06 +00:00
|
|
|
branches: [main]
|
2020-05-27 13:43:28 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
2020-06-06 22:02:50 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-12-25 15:44:24 +00:00
|
|
|
node: [ '14', '16' ]
|
2020-08-31 10:48:58 +00:00
|
|
|
name: Test and build with NodeJS ${{ matrix.node }}
|
2020-05-27 13:43:28 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2022-03-05 15:27:37 +00:00
|
|
|
uses: actions/checkout@v3
|
2020-11-29 09:07:44 +00:00
|
|
|
- name: Get yarn cache directory path
|
|
|
|
id: yarn-cache-dir-path
|
2021-12-30 17:45:04 +00:00
|
|
|
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
|
2021-06-21 20:58:54 +00:00
|
|
|
- name: Cache yarn cache
|
2022-04-02 09:07:13 +00:00
|
|
|
uses: actions/cache@v3
|
2020-11-29 09:07:44 +00:00
|
|
|
id: yarn-cache
|
2020-05-27 13:43:28 +00:00
|
|
|
with:
|
2020-11-29 09:07:44 +00:00
|
|
|
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
|
2021-05-24 19:01:16 +00:00
|
|
|
key: ${{ runner.os }}-${{ matrix.node }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
2020-11-29 09:07:44 +00:00
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-yarn-
|
2020-06-06 22:02:50 +00:00
|
|
|
- name: Set up NodeJS
|
2022-02-26 00:36:32 +00:00
|
|
|
uses: actions/setup-node@v3
|
2020-05-27 13:43:28 +00:00
|
|
|
with:
|
2020-06-06 22:02:50 +00:00
|
|
|
node-version: ${{ matrix.node }}
|
|
|
|
- name: Install dependencies
|
2021-12-30 17:45:04 +00:00
|
|
|
run: yarn install --immutable
|
2020-07-18 20:17:36 +00:00
|
|
|
- name: Test Project
|
2021-12-25 15:44:24 +00:00
|
|
|
run: yarn test:ci
|
2020-06-06 22:02:50 +00:00
|
|
|
- name: Build project
|
2021-05-02 20:38:43 +00:00
|
|
|
run: yarn build:mock
|