mirror of
https://github.com/jupyter/notebook.git
synced 2025-02-05 12:19:58 +08:00
Upload artifacts
This commit is contained in:
parent
2db4d689d2
commit
486c670b52
5
.github/workflows/build.yml
vendored
5
.github/workflows/build.yml
vendored
@ -60,6 +60,11 @@ jobs:
|
||||
run: |
|
||||
jlpm run build:test
|
||||
jlpm run test:ci
|
||||
- uses: actions/upload-artifact@v2
|
||||
if: ${{ always() }}
|
||||
with:
|
||||
name: test-artifacts
|
||||
path: app/artifacts
|
||||
|
||||
build:
|
||||
needs: [integrity]
|
||||
|
5
.github/workflows/release.yml
vendored
5
.github/workflows/release.yml
vendored
@ -60,6 +60,11 @@ jobs:
|
||||
run: |
|
||||
jlpm run build:test
|
||||
jlpm run test:ci
|
||||
- uses: actions/upload-artifact@v2
|
||||
if: ${{ always() }}
|
||||
with:
|
||||
name: test-artifacts
|
||||
path: app/artifacts
|
||||
|
||||
build:
|
||||
needs: [integrity]
|
||||
|
@ -7,7 +7,9 @@ describe('Smoke', () => {
|
||||
beforeAll(async () => {
|
||||
jest.setTimeout(200000);
|
||||
browser = await chromium.launch({ slowMo: 1000 });
|
||||
context = await browser.newContext({ recordVideo: { dir: 'videos/' } });
|
||||
context = await browser.newContext({
|
||||
recordVideo: { dir: 'artifacts/videos/' }
|
||||
});
|
||||
});
|
||||
|
||||
afterAll(async () => {
|
||||
|
Loading…
Reference in New Issue
Block a user