Skip to content

Commit

Permalink
sdds
Browse files Browse the repository at this point in the history
  • Loading branch information
silvs110 committed Oct 22, 2024
1 parent 4651104 commit 9151e07
Show file tree
Hide file tree
Showing 27 changed files with 1,203,442 additions and 237 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/go_wasm_build_test_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,16 @@ name: Go WASM - Build, Test & Deploy

on:
push:
branches: [ "main" ]
branches: [ "main"]
pull_request:
branches: [ "main" ]

jobs:
build:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macos-latest]
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
Expand All @@ -27,11 +30,16 @@ jobs:
- name: Build
run: ./build_wasm

- name: Prepare Tests (MacOS)
if: matrix.os == 'macos-latest'
run: |
brew install --cask [email protected]
brew install --cask [email protected]
- name: Test
run: ./run_tests
run: go test -v ./tests/e2e

- name: Commit and push WASM static pages
if: github.event_name == 'push'
if: github.event_name == 'push' && github.ref_name == 'main' && matrix.os == 'ubuntu-latest'
env:
CI_COMMIT_MESSAGE: Add WASM static pages - $(date +'%Y-%m-%dT%H:%M:%S')
CI_COMMIT_AUTHOR: padaiyal
Expand Down
Binary file not shown.
Binary file added tests/e2e/resources/drivers/darwin/chromedriver
Binary file not shown.
Binary file added tests/e2e/resources/drivers/darwin/geckodriver
Binary file not shown.
3 changes: 3 additions & 0 deletions tests/e2e/resources/drivers/drivers.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
geckodriver=v0.35.0
chromedriver=v.129.0.6668.100
firefox=v131.0.3
Binary file removed tests/e2e/resources/drivers/geckodriver
Binary file not shown.
Binary file removed tests/e2e/resources/drivers/geckodriver.exe
Binary file not shown.
Binary file not shown.
Binary file added tests/e2e/resources/drivers/linux/geckodriver
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading

0 comments on commit 9151e07

Please sign in to comment.