Skip to content

Commit

Permalink
Update nodejs in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mattpap committed Sep 20, 2022
1 parent 007b35b commit e3f44a7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,19 @@ jobs:
- name: Install node
uses: actions/setup-node@v1
with:
node-version: '12.x'
node-version: '16.x'
- name: Install Python
uses: actions/setup-python@v2
with:
python-version: '3.7'
python-version: '3.8'
architecture: 'x64'
- name: Setup pip cache
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: pip-3.7-${{ hashFiles('package.json') }}
key: pip-3.8-${{ hashFiles('package.json') }}
restore-keys: |
pip-3.7-
pip-3.8-
pip-
- name: Get yarn cache directory path
Expand All @@ -41,7 +41,7 @@ jobs:
key: yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
yarn-
- name: Install dependencies
run: python -m pip install -U jupyterlab~=3.0 jupyter_packaging~=0.7.9
- name: Build the extension
Expand Down

0 comments on commit e3f44a7

Please sign in to comment.