-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a63c9d2
commit a0b1a15
Showing
6 changed files
with
49 additions
and
63 deletions.
There are no files selected for viewing
6 changes: 3 additions & 3 deletions
6
.github/workflows/test-example.yml → .github/workflows/e2e-test.yml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
--- | ||
name: test-examples | ||
name: e2e-test | ||
on: | ||
pull_request: | ||
jobs: | ||
test-examples: | ||
end-to-end-test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: test OGC API Features with Azure GeoPackage | ||
- name: Test OGC API Features with Azure GeoPackage | ||
run: docker-compose -f ./examples/docker-compose-features-azure.yaml up --exit-code-from smoketest |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
name: lint (web/ts) | ||
name: lint (ts) | ||
on: | ||
push: | ||
branches: | ||
|
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
70 changes: 35 additions & 35 deletions
70
.github/workflows/cypress-ts.yml → .github/workflows/test-ts.yml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,35 @@ | ||
--- | ||
name: cypress-ts | ||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
|
||
defaults: | ||
run: | ||
working-directory: ./viewer | ||
jobs: | ||
cypress-ts: | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
node-version: [18.x] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
cache: "npm" | ||
cache-dependency-path: "./viewer/package-lock.json" | ||
- name: Install | ||
run: npm ci | ||
- name: Cypress run | ||
uses: cypress-io/github-action@v6 | ||
with: | ||
component: true | ||
working-directory: ./viewer | ||
browser: chrome | ||
--- | ||
name: test (ts) | ||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
|
||
defaults: | ||
run: | ||
working-directory: ./viewer | ||
jobs: | ||
cypress-ts: | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
node-version: [18.x] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
cache: "npm" | ||
cache-dependency-path: "./viewer/package-lock.json" | ||
- name: Install | ||
run: npm ci | ||
- name: Cypress run | ||
uses: cypress-io/github-action@v6 | ||
with: | ||
component: true | ||
working-directory: ./viewer | ||
browser: chrome |
This file was deleted.
Oops, something went wrong.