chore: restore test setup from backoffice repo
This commit is contained in:
24
.github/workflows/test-backoffice.yml
vendored
24
.github/workflows/test-backoffice.yml
vendored
@@ -6,11 +6,15 @@ on:
|
|||||||
- contrib
|
- contrib
|
||||||
- release/*
|
- release/*
|
||||||
- v*/dev
|
- v*/dev
|
||||||
|
paths:
|
||||||
|
- src/Umbraco.Web.UI.Client/**
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- contrib
|
- contrib
|
||||||
- release/*
|
- release/*
|
||||||
- v*/dev
|
- v*/dev
|
||||||
|
paths:
|
||||||
|
- src/Umbraco.Web.UI.Client/**
|
||||||
|
|
||||||
# Allows GitHub to use this workflow to validate the merge queue
|
# Allows GitHub to use this workflow to validate the merge queue
|
||||||
merge_group:
|
merge_group:
|
||||||
@@ -22,7 +26,7 @@ env:
|
|||||||
NODE_OPTIONS: --max_old_space_size=16384
|
NODE_OPTIONS: --max_old_space_size=16384
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
defaults:
|
defaults:
|
||||||
run:
|
run:
|
||||||
@@ -37,5 +41,23 @@ jobs:
|
|||||||
cache-dependency-path: ./src/Umbraco.Web.UI.Client/package-lock.json
|
cache-dependency-path: ./src/Umbraco.Web.UI.Client/package-lock.json
|
||||||
- run: npm ci --no-audit --no-fund --prefer-offline
|
- run: npm ci --no-audit --no-fund --prefer-offline
|
||||||
- run: npm run lint:errors
|
- run: npm run lint:errors
|
||||||
|
- run: npm run build:for:cms
|
||||||
|
- run: npm run check:paths
|
||||||
|
- run: npm run generate:jsonschema:dist
|
||||||
|
|
||||||
|
test:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
defaults:
|
||||||
|
run:
|
||||||
|
working-directory: src/Umbraco.Web.UI.Client
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: Use Node.js
|
||||||
|
uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version-file: src/Umbraco.Web.UI.Client/.nvmrc
|
||||||
|
cache: npm
|
||||||
|
cache-dependency-path: ./src/Umbraco.Web.UI.Client/package-lock.json
|
||||||
|
- run: npm ci --no-audit --no-fund --prefer-offline
|
||||||
- run: npx playwright install --with-deps
|
- run: npx playwright install --with-deps
|
||||||
- run: npm test
|
- run: npm test
|
||||||
|
|||||||
Reference in New Issue
Block a user