Skip to content

Commit

Permalink
sdds
Browse files Browse the repository at this point in the history
  • Loading branch information
silvs110 committed Oct 20, 2024
1 parent 4651104 commit c365976
Show file tree
Hide file tree
Showing 18 changed files with 814,259 additions and 227 deletions.
12 changes: 7 additions & 5 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", "issue4" ]
pull_request:
branches: [ "main" ]

jobs:
build:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest]
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
Expand All @@ -26,12 +29,11 @@ jobs:

- name: Build
run: ./build_wasm

- 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
Loading

0 comments on commit c365976

Please sign in to comment.