Skip to content

Commit

Permalink
deal with preflight for now
Browse files Browse the repository at this point in the history
  • Loading branch information
bollwyvl committed Aug 21, 2023
1 parent da72cb6 commit cd6730f
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ jobs:
key: |
${{ env.CACHE_EPOCH }}-ubuntu-node-modules-${{ hashFiles('yarn.lock') }}
- name: preflight
run: set -eux && source /home/runner/micromamba/envs/ci/bin/activate && doit lock:preflight

- name: build
run: set -eux && source /home/runner/micromamba/envs/ci/bin/activate && doit -n4 *:build:* || doit *:build:*

Expand All @@ -50,7 +53,14 @@ jobs:
name: jupyterlab-fonts-${{ github.run_number }}-dist
path: ./dist

- name: upload (preflight)
uses: actions/upload-artifact@v3
with:
name: jupyterlab-fonts-${{ github.run_number }}-lock-preflight
path: ./build/locks

lint:
needs: [build]
runs-on: ubuntu-latest
steps:
- name: checkout
Expand All @@ -70,6 +80,12 @@ jobs:
key: |
${{ env.CACHE_EPOCH }}-ubuntu-node-modules-${{ hashFiles('yarn.lock') }}
- name: download (preflight)
uses: actions/download-artifact@v3
with:
name: jupyterlab-fonts-${{ github.run_number }}-lock-preflight
path: ./build/locks

- name: lint
run: set -eux && source /home/runner/micromamba/envs/ci/bin/activate && doit -n4 *:lint:* || doit *:lint:*

Expand Down

0 comments on commit cd6730f

Please sign in to comment.