Skip to content

Commit

Permalink
build(package): remove pnpm lockfile
Browse files Browse the repository at this point in the history
  • Loading branch information
kwonoj committed Sep 16, 2024
1 parent db34a1e commit 7db25ec
Show file tree
Hide file tree
Showing 7 changed files with 4,621 additions and 3,122 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
uses: ./.github/workflows/tests-core.yml
with:
env-name: Node.JS
test-command: pnpm run test
test-command: yarn test
test-in-browsers:
if: ${{ false }} # disable for now
strategy:
Expand All @@ -25,6 +25,4 @@ jobs:
uses: ./.github/workflows/tests-core.yml
with:
env-name: ${{matrix.browser}}
test-command: BROWSER_TO_TEST=${{matrix.browser}} pnpm run test-in-browser


test-command: BROWSER_TO_TEST=${{matrix.browser}} yarn test-in-browser
8 changes: 2 additions & 6 deletions .github/workflows/tests-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,18 @@ on:
env-name:
required: true
type: string


jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Install Node.JS
uses: actions/setup-node@v3
with:
node-version: latest
cache: "pnpm"
- name: Install NPM modules
run: "pnpm i"
run: "corepack enable && yarn"
- name: Run tests in ${{inputs.env-name}}
run: ${{inputs.test-command}}
Binary file added .yarn/install-state.gz
Binary file not shown.
1 change: 1 addition & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nodeLinker: node-modules
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,6 @@
"vite": "^4.4.9",
"vitest": "^0.34.5",
"webdriverio": "^8.16.15"
}
}
},
"packageManager": "[email protected]"
}
Loading

0 comments on commit 7db25ec

Please sign in to comment.