This commit is contained in:
Wryn (yage) Wagner 2024-02-20 22:20:27 -07:00
parent 7233ced080
commit 6236265f1a

View File

@ -13,16 +13,16 @@ executors:
nodejs: nodejs:
docker: docker:
- image: node:18 - image: node:18
resource_class: small resource_class: large
jobs: jobs:
python-test: python-test:
executor: python executor: python
working_directory: /scwrypts/py/lib working_directory: ~/scwrypts/py/lib
steps: steps:
- checkout: - checkout:
path: /scwrypts path: ~/scwrypts
- run: | - run: |
: \ : \
&& pip install -e . \ && pip install -e . \
@ -31,19 +31,19 @@ jobs:
python-publish: python-publish:
executor: python executor: python
working_directory: /scwrypts/py/lib working_directory: ~/scwrypts/py/lib
steps: steps:
- checkout: - checkout:
path: /scwrypts path: ~/scwrypts
- python/dist - python/dist
- run: pip install twine && twine upload dist/* - run: pip install twine && twine upload dist/*
nodejs-test: nodejs-test:
executor: nodejs executor: nodejs
working_directory: /scwrypts/zx/lib working_directory: ~/scwrypts/zx/lib
steps: steps:
- checkout: - checkout:
path: /scwrypts path: ~/scwrypts
- restore_cache: - restore_cache:
name: restore pnpm cache name: restore pnpm cache
@ -69,10 +69,10 @@ jobs:
nodejs-publish: nodejs-publish:
executor: nodejs executor: nodejs
working_directory: /scwrypts/zx/lib working_directory: ~/scwrypts/zx/lib
steps: steps:
- checkout: - checkout:
path: /scwrypts path: ~/scwrypts
- restore_cache: - restore_cache:
name: restore pnpm cache name: restore pnpm cache