Skip to content

Commit

Permalink
ci: run with python 3
Browse files Browse the repository at this point in the history
  • Loading branch information
Ron de las Alas committed Oct 24, 2023
1 parent c907928 commit c47b231
Show file tree
Hide file tree
Showing 5 changed files with 1,743 additions and 8,799 deletions.
27 changes: 15 additions & 12 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
JVM_OPTS: -Xmx3200m
DETECT_CHROMEDRIVER_VERSION: "true"
PROJECT_PATH: ./scratch-blocks
container:
image: python:2.7.18-buster
options: --user root
# container:
# image: python:2.7.18-buster
# options: --user root
steps:
- uses: actions/checkout@v3
- name: Install Chrome Dependencies
Expand All @@ -30,17 +30,20 @@ jobs:
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
# - name: Setup Chrome
# uses: browser-actions/setup-chrome@v1
# with:
# chrome-version: latest
- uses: browser-actions/setup-chrome@v1
with:
chrome-version: stable
id: setup-chrome
- run: |
echo Installed chromium version: ${{ steps.setup-chrome.outputs.chrome-version }}
${{ steps.setup-chrome.outputs.chrome-path }} --version
- name: Install Chrome Driver
run: DETECT_CHROMEDRIVER_VERSION=true npm install chromedriver
- name: Install Node Dependencies
run: npm ci
- name: Lint
run: npm run test:lint
- name: Whats In Here
run: ls -la
- name: MSG
run: cd msg && ls -la
- name: Run Tests
run: npm test
run: npm run test:messages
- name: Run Unit Tests
run: DISPLAY=:99 npm run test:unit
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v16
v18
Loading

0 comments on commit c47b231

Please sign in to comment.