Merge pull request #218 from GSA/fix-search-default-value #386
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Tests | |
on: [push] | |
jobs: | |
lint-test: | |
name: Lint + Test | |
uses: gsa/data.gov/.github/workflows/ckan-test.yml@main | |
with: | |
ext_name: datagovtheme | |
plugins: harvest datagovtheme geodatagov spatial_metadata | |
secrets: inherit | |
ui-test: | |
name: UI Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: build | |
run: make build | |
- name: ui-test | |
run: make ui-test | |
- name: cypress-artifacs | |
uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: cypress-artifacts | |
path: | | |
./e2e/cypress/screenshots/ | |
./e2e/cypress/videos/ |