mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-12-26 12:11:38 +00:00
f3bf7cd105
Signed-off-by: Philip Molares <philip.molares@udo.edu>
37 lines
863 B
YAML
37 lines
863 B
YAML
# SPDX-FileCopyrightText: 2020 The HedgeDoc developers (see AUTHORS file)
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
name: test, build
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
node: ['12', '14']
|
|
name: Test and build with NodeJS ${{ matrix.node }}
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v2
|
|
- name: Cache node_modules
|
|
uses: actions/cache@v2.1.3
|
|
with:
|
|
path: node_modules
|
|
key: node_modules
|
|
- name: Set up NodeJS
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: ${{ matrix.node }}
|
|
- name: Install dependencies
|
|
run: yarn install
|
|
- name: Test Project
|
|
run: yarn test
|
|
- name: Build project
|
|
run: yarn build
|