Skip to content

Commit

Permalink
more debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke Brody committed Aug 13, 2024
1 parent 9aff936 commit d77eeef
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 18 deletions.
11 changes: 5 additions & 6 deletions .github/actions/e2e-test/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
CMD ./$GITHUB_WORKSPACE/test-ci.sh
24 changes: 12 additions & 12 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit d77eeef

Please sign in to comment.