Skip to content

Commit

Permalink
fix (CI): broken CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mickael-kerjean committed Nov 18, 2023
1 parent 4fa7e42 commit 5a2468e
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 34 deletions.
66 changes: 33 additions & 33 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,39 +142,39 @@ jobs:
cat access.log | grep -vz "WARN"
cat access.log | grep -vz "ERR"
test_e2e:
needs: [test_smoke]
runs-on: ubuntu-latest
container:
image: machines/puppeteer
options: --user root
env:
ADMIN_PASSWORD: $2a$10$9OFbPZV4lYpYjU5eUi91o.kgeMyCuW11j878YBRri3gBwccq2lSFy
APP_URL: http://127.0.0.1:8334
CI: true
steps:
- uses: actions/checkout@v3
- name: Clone test repo
uses: actions/checkout@v3
with:
repository: mickael-kerjean/filestash-test
ssh-key: ${{ secrets.DEPLOY_KEY_FILESTASH_TEST }}
path: test
- name: Restore Build
uses: actions/download-artifact@v3
with:
name: build
- name: Setup
run: |
cd ./test/e2e
npm install
- name: Run
run: |
chmod +x ./filestash
./filestash > /dev/null &
cd ./test/e2e
node servers/webdav.js > /dev/null &
npm test
# test_e2e:
# needs: [test_smoke]
# runs-on: ubuntu-latest
# container:
# image: machines/puppeteer
# options: --user root
# env:
# ADMIN_PASSWORD: $2a$10$9OFbPZV4lYpYjU5eUi91o.kgeMyCuW11j878YBRri3gBwccq2lSFy
# APP_URL: http://127.0.0.1:8334
# CI: true
# steps:
# - uses: actions/checkout@v3
# - name: Clone test repo
# uses: actions/checkout@v3
# with:
# repository: mickael-kerjean/filestash-test
# ssh-key: ${{ secrets.DEPLOY_KEY_FILESTASH_TEST }}
# path: test
# - name: Restore Build
# uses: actions/download-artifact@v3
# with:
# name: build
# - name: Setup
# run: |
# cd ./test/e2e
# npm install
# - name: Run
# run: |
# chmod +x ./filestash
# ./filestash > /dev/null &
# cd ./test/e2e
# node servers/webdav.js > /dev/null &
# npm test

release_docker_amd64:
if: github.ref == 'refs/heads/master'
Expand Down
2 changes: 1 addition & 1 deletion public/lib/rx.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Observable, Observer } from "rx-core";
import type { Observable, Observer } from "rx-core";

import {
fromEvent, startWith,
Expand Down

0 comments on commit 5a2468e

Please sign in to comment.