feat: add mapbox+deck.gl basic map #257
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: Playwright Tests | |
on: | |
push: | |
branches: [main, master] | |
pull_request: | |
branches: [main, master] | |
jobs: | |
test-webui: | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: LuisEnMarroquin/[email protected] | |
with: | |
SSHKEY: ${{ secrets.CC_GA }} # ----- BEGIN RSA PRIVATE KEY----- ... | |
- run: ssh -T [email protected] || true | |
- run: git submodule update --init --recursive | |
- name: Install pnpm | |
uses: pnpm/[email protected] | |
- name: Set node version to 18 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: "pnpm" | |
- name: Install dependencies | |
run: pnpm install | |
- name: build packages | |
run: pnpm run -r build | |
- name: Install Playwright Browsers | |
run: cd packages/webui && pnpm exec playwright install --with-deps | |
- name: Build fe | |
run: cd packages/webui && npm run build | |
- name: Run Playwright tests | |
run: cd packages/webui && pnpm exec playwright test | |
- uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: playwright-report | |
path: packages/webui/playwright-report/ | |
retention-days: 30 | |
# test-landapp: | |
# timeout-minutes: 60 | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - uses: LuisEnMarroquin/[email protected] | |
# with: | |
# SSHKEY: ${{ secrets.CC_GA }} # ----- BEGIN RSA PRIVATE KEY----- ... | |
# - run: ssh -T [email protected] || true | |
# - run: git submodule update --init --recursive | |
# with: | |
# submodules: recursive | |
# ssh-key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDkAa2Y049BCOYn0m2IINqBTjO18HtiOia4QRDkmClCy4/fQLcPsmQ7C7cE3TDGFNbIcm17jl3wQXCd8y1SBi6iWhcHXskI+HCtzN/NASBstljcuhx6gll3xjFhWj2XN2zwmpLzOVsCj7K34N8FRmEaPcrB3D0pKg89qO3SCPETFAwuzLFWsPzXWtDL6O90qbO1AGg2vQrucRvvIiQ2IOg8eMidXszgVi8kanfuh4zVRn+NINpNZMYFabkj6HfbGX9QyRyOS2cznKCG8MXIbIJiK9jTR0Yd0/WaUHRk69fBB0p5zhhVsrMvBAM/RjLKg1ePgJctYPTFPJMc59/MwCB3 cc_ga" | |
# - name: Install pnpm | |
# uses: pnpm/[email protected] | |
# - name: Set node version to 18 | |
# uses: actions/setup-node@v3 | |
# with: | |
# node-version: 18 | |
# cache: "pnpm" | |
# - name: Install dependencies | |
# run: pnpm install | |
# - name: build packages | |
# run: pnpm run -r build | |
# - name: Install Playwright Browsers | |
# run: cd packages/land_app && pnpm exec playwright install --with-deps | |
# - name: Build fe | |
# run: cd packages/land_app && npm run build | |
# - name: Run Playwright tests | |
# run: cd packages/land_app && pnpm exec playwright test | |
# - uses: actions/upload-artifact@v3 | |
# if: always() | |
# with: | |
# name: playwright-report | |
# path: packages/land_app/playwright-report/ | |
# retention-days: 30 |