Skip to content

Commit

Permalink
yarn v4
Browse files Browse the repository at this point in the history
  • Loading branch information
bugzpodder committed Nov 5, 2023
1 parent 6e317d3 commit 2bec3d1
Show file tree
Hide file tree
Showing 93 changed files with 16,706 additions and 7,707 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/black.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ jobs:
- uses: psf/black@stable
with:
options: "--check --verbose"
src: "./src"
src: "./packages/pysandbox/src"
version: "23.9.1"
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Install, build, and upload your site
uses: withastro/action@v0
with:
path: ./docs # The root location of your Astro project inside the repository. (optional)
path: ./packages/docs # The root location of your Astro project inside the repository. (optional)
node-version: 18 # The specific version of Node that should be used to build your site. Defaults to 16. (optional)
package-manager: yarn # The Node package manager that should be used to install dependencies and build your site. Automatically detected based on your lockfile. (optional)

Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ jobs:
with:
node-version: "18.x"
- run: yarn install
- run: yarn format
- run: yarn workspace pysandbox format
- run: yarn workspace docs format
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ jobs:
- name: Install dependencies
run: yarn install
- name: Build pysandbox
run: yarn build
run: yarn workspace pysandbox build
- name: Install chromium
run: yarn playwright install chromium
run: yarn workspace pysandbox playwright install chromium
- name: Run Playwright tests
run: yarn test
run: yarn workspace pysandbox test
- uses: actions/upload-artifact@v3
if: always()
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Log git status
run: git status
- name: Run release
run: yarn release --ci
run: yarn workspace pysandbox release --ci
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
11 changes: 10 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
dist/
node_modules/
yarn-error.log
test-results
test-results
.parcel-cache

.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
893 changes: 893 additions & 0 deletions .yarn/releases/yarn-4.0.1.cjs

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-4.0.1.cjs
2 changes: 0 additions & 2 deletions docs/public/coi-serviceworker.min.js

This file was deleted.

Loading

0 comments on commit 2bec3d1

Please sign in to comment.