hedgedoc/.github/workflows/build.yml

44 lines
1.2 KiB
YAML
Raw Normal View History

# SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
#
# SPDX-License-Identifier: AGPL-3.0-only
name: test, build
on:
push:
2020-08-15 10:17:06 -04:00
branches: [main]
pull_request:
2020-08-15 10:17:06 -04:00
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
2020-08-27 08:34:10 -04:00
node: ['12', '14']
name: Test and build with NodeJS ${{ matrix.node }}
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Cache node_modules
uses: actions/cache@v2
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Set up NodeJS
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: yarn install --frozen-lockfile --prefer-offline
- name: Test Project
run: yarn test
- name: Build project
run: yarn build:production