mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-30 14:55:27 -04:00
fix(backend): migrate code to use the commons workspace
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
parent
c489aacea0
commit
298b6bc205
13 changed files with 37 additions and 42 deletions
18
.github/workflows/backend-tests.yml
vendored
18
.github/workflows/backend-tests.yml
vendored
|
@ -72,14 +72,11 @@ jobs:
|
|||
- uses: actions/checkout@v3
|
||||
if: needs.changes.outputs.changed == 'true'
|
||||
|
||||
- name: Use Node.js ${{ matrix.node-version }}
|
||||
- name: Setup node
|
||||
if: needs.changes.outputs.changed == 'true'
|
||||
uses: actions/setup-node@v3
|
||||
uses: ./.github/actions/setup-node
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
|
||||
- run: yarn install --immutable
|
||||
if: needs.changes.outputs.changed == 'true'
|
||||
NODE_VERSION: ${{ env.NODE_VERSION }}
|
||||
|
||||
- run: yarn run build
|
||||
if: needs.changes.outputs.changed == 'true'
|
||||
|
@ -93,14 +90,11 @@ jobs:
|
|||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Use Node.js ${{ env.NODEJS_VERSION }}
|
||||
- name: Setup node
|
||||
if: needs.changes.outputs.changed == 'true'
|
||||
uses: actions/setup-node@v3
|
||||
uses: ./.github/actions/setup-node
|
||||
with:
|
||||
node-version: ${{ env.NODEJS_VERSION }}
|
||||
|
||||
- run: yarn install --immutable
|
||||
if: needs.changes.outputs.changed == 'true'
|
||||
NODE_VERSION: ${{ env.NODE_VERSION }}
|
||||
|
||||
- run: yarn run test:cov
|
||||
if: needs.changes.outputs.changed == 'true'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue