Skip to content

Commit e346cb6

Browse files
authored
Update galata bot (#1152)
1 parent c6b9d05 commit e346cb6

File tree

1 file changed

+11
-21
lines changed

1 file changed

+11
-21
lines changed

.github/workflows/update_galata_references.yml

Lines changed: 11 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@v2
23+
uses: actions/checkout@v3
2424
with:
2525
token: ${{ secrets.GITHUB_TOKEN }}
2626

@@ -32,35 +32,25 @@ jobs:
3232
env:
3333
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3434

35-
- name: Setup conda
36-
uses: conda-incubator/setup-miniconda@v2
35+
- name: Install Conda environment with Micromamba
36+
uses: mamba-org/setup-micromamba@main
3737
with:
3838
environment-file: environment-dev.yml
39-
activate-environment: ipyleaflet-dev
40-
mamba-version: "*"
41-
python-version: ${{ matrix.python-version }}
4239
channels: conda-forge
4340

4441
- name: Install ipyleaflet
45-
run: pip install . --no-deps
42+
run: pip install .
4643

47-
- name: Install JS deps
48-
run: |
49-
jlpm
50-
jlpm build
51-
working-directory: js
52-
53-
- name: Install labextension
54-
run: jupyter labextension develop . --overwrite
55-
56-
- name: Install ui-tests
57-
run: |
58-
jlpm install --frozen-lockfile
59-
jlpm playwright install chromium
44+
- name: Install dependencies
45+
shell: bash -l {0}
6046
working-directory: ui-tests
47+
env:
48+
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
49+
run: jlpm install
6150

6251
- uses: jupyterlab/maintainer-tools/.github/actions/update-snapshots@main
6352
with:
53+
npm_client: jlpm
6454
github_token: ${{ secrets.GITHUB_TOKEN }}
65-
server_url: http-get://localhost:8888/
55+
start_server_script: 'null'
6656
test_folder: ui-tests

0 commit comments

Comments
 (0)