# SPDX-FileCopyrightText: 2021 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: [ '14', '16', '18' ] name: Test and build with NodeJS ${{ matrix.node }} steps: - name: Checkout repository uses: actions/checkout@v3 - name: Get yarn cache directory path id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn config get cacheFolder)" - name: Cache yarn cache uses: actions/cache@v3 id: yarn-cache with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} key: ${{ runner.os }}-${{ matrix.node }}-yarn-${{ hashFiles('**/yarn.lock') }} restore-keys: | ${{ runner.os }}-yarn-${{ matrix.node }} - name: Set up NodeJS uses: actions/setup-node@v3 with: node-version: ${{ matrix.node }} - name: Install dependencies run: yarn install --immutable - name: Test Project run: yarn test:ci - name: Build project run: yarn build:mock