Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

snapshot generate 2023 #2213

Open
wants to merge 12 commits into
base: maintenance-3.1.x
Choose a base branch
from
Open
4 changes: 4 additions & 0 deletions .github/workflows/a11y.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ jobs:
node-version: 18
scope: '@nuxeo'

- name: cache clean
id: cache_clean
run: npm cache clean --force

- name: Install Web UI
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_PACKAGES_TOKEN }}
Expand Down
12 changes: 8 additions & 4 deletions .github/workflows/ftest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:
PACKAGES_AUTH_USER:
description: 'PACKAGES_AUTH_USER'
required: true
PACKAGES_AUTH_TOKEN:
PACKAGES_AUTH_TOKEN:
description: 'PACKAGES_AUTH_TOKEN'
required: true

Expand All @@ -29,7 +29,7 @@ env:

jobs:
ftests:
runs-on: [ self-hosted, master ]
runs-on: [self-hosted, master]
steps:
- uses: actions/checkout@v2
with:
Expand All @@ -42,7 +42,7 @@ jobs:
node-version: 18

- uses: actions/setup-java@v2
with:
with:
distribution: 'zulu'
java-version: '17'

Expand All @@ -55,6 +55,10 @@ jobs:
echo ::set-output name=branch::${{ env.REFERENCE_BRANCH }}
fi

- name: cache clean
id: cache_clean
run: npm cache clean --force

- name: Install Web UI
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_PACKAGES_TOKEN }}
Expand Down Expand Up @@ -162,4 +166,4 @@ jobs:
name: packages
path: |
plugin/web-ui/marketplace/target/nuxeo-web-ui-marketplace-*.zip
plugin/itests/marketplace/target/nuxeo-web-ui-marketplace-itests-*.zip
plugin/itests/marketplace/target/nuxeo-web-ui-marketplace-itests-*.zip
8 changes: 6 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ env:

jobs:
unit-test:
runs-on: [ self-hosted, master ]
runs-on: [self-hosted, master]
steps:
- uses: actions/checkout@v2
with:
Expand All @@ -36,6 +36,10 @@ jobs:
scope: '@nuxeo'
node-version: 18

- name: cache clean
id: cache_clean
run: npm cache clean --force

- name: Install
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
Expand All @@ -45,4 +49,4 @@ jobs:
env:
SAUCE_USERNAME: nuxeo-web-ui
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}
run: npm run test
run: npm run test
Loading