Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
with:
node-version: '20'
# cache: 'yarn'

# - name: Install yarn
# run: |
# npm install -g corepack
Expand All @@ -31,7 +31,7 @@ jobs:
architecture: 'x64'

- name: Setup pip cache
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: pip-3.11-${{ hashFiles('package.json') }}
Expand All @@ -45,7 +45,7 @@ jobs:
shell: bash

- name: Setup yarn cache
uses: actions/cache@v2
uses: actions/cache@v4
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
Expand All @@ -64,7 +64,7 @@ jobs:
# - name: Build the Extension
# run: jlpm run build
# shell: bash

- name: Install Extension
run: |
set -eux
Expand All @@ -76,14 +76,14 @@ jobs:
set -eux
jupyter server extension enable zenodo_jupyterlab.server
shell: bash

- name: Run Pytest
env:
CI_ZENODO_API_KEY: ${{ secrets.CI_ZENODO_API_KEY }}
run: pytest zenodo_jupyterlab/server/tests
shell: bash


# install_extension:
# runs-on: ubuntu-latest
# needs: build
Expand Down
Loading