diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/build_website.yml | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/.github/workflows/build_website.yml b/.github/workflows/build_website.yml index 46738a9..1a26539 100644 --- a/.github/workflows/build_website.yml +++ b/.github/workflows/build_website.yml @@ -4,9 +4,10 @@ name: Build Website # Controls when the workflow will run on: - # Triggers the workflow on push or pull request events but only for the "master" branch push: branches: [ "master" ] + pull_request: + branches: [ "master" ] # Allows you to run this workflow manually from the Actions tab workflow_dispatch: @@ -37,13 +38,3 @@ jobs: uses: borales/actions-yarn@v4.2.0 with: cmd: build - #- name: Test the app - # uses: borales/actions-yarn@v4.2.0 - # with: - # cmd: test # will run `yarn test` command - - #- name: Run test in sub-folder - # uses: borales/actions-yarn@v4.2.0 - # with: - # cmd: test - # dir: 'frontend' # will run `yarn test` in `frontend` sub folder |
