diff --git a/.github/actions/e2e-test/Dockerfile b/.github/actions/e2e-test/Dockerfile index a76bf81a3..861b6822c 100644 --- a/.github/actions/e2e-test/Dockerfile +++ b/.github/actions/e2e-test/Dockerfile @@ -1,12 +1,11 @@ FROM ubuntu:22.04 FROM node:20 -RUN apt-get -y update -RUN apt-get -y install python3-pip -RUN apt-get -y install libgdal-dev +# RUN apt-get -y update +# RUN apt-get -y install python3-pip +# RUN apt-get -y install libgdal-dev -RUN echo $GITHUB_WORKSPACE -RUN ls $GITHUB_WORKSPACE +RUN find /home -maxdepth 3 -type d RUN pip3 install --break-system-packages -r $GITHUB_WORKSPACE/requirements.txt RUN apt-get -y install chromium @@ -21,4 +20,4 @@ RUN apt-get -y install libc6:i386 RUN apt-get -y install libx11-6:i386 RUN apt-get -y install fluxbox -CMD ./GITHUB_WORKSPACE/test-ci.sh \ No newline at end of file +CMD ./$GITHUB_WORKSPACE/test-ci.sh \ No newline at end of file diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index d057306b9..55bc5f690 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -1,20 +1,20 @@ name: check on: [push] jobs: - lint: - runs-on: ubuntu-22.04 - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 - with: - node-version: 20 - - run: npm ci - working-directory: react - - run: npx eslint . - working-directory: react + # lint: + # runs-on: ubuntu-22.04 + # steps: + # - uses: actions/checkout@v4 + # - uses: actions/setup-node@v4 + # with: + # node-version: 20 + # - run: npm ci + # working-directory: react + # - run: npx eslint . + # working-directory: react e2e: runs-on: ubuntu-22.04 - needs: lint # don't want to waste e2e runs + # needs: lint # don't want to waste e2e runs steps: - uses: actions/checkout@v4 - uses: ./.github/actions/e2e-test