Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cspotcode committed May 6, 2023
1 parent e8c9fe5 commit 2a76a8f
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/e2e-git-installs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
with:
node-version: 18
- run: |
npm --version
echo '{"scripts": {"test": "ts-node -vvv"}}' > package.json
npm install https://github.com/TypeStrong/ts-node#main
npm test
Expand All @@ -44,6 +45,7 @@ jobs:
- run: |
corepack enable
corepack prepare pnpm@latest --activate
pnpm --version
echo '{"scripts": {"test": "ts-node -vvv"}}' > package.json
pnpm install https://github.com/TypeStrong/ts-node#main
pnpm test
Expand All @@ -62,6 +64,7 @@ jobs:
- run: |
corepack enable
corepack prepare yarn@stable --activate
yarn --version
echo '{"scripts": {"test": "ts-node -vvv"}}' > package.json
yarn add ts-node@https://github.com/TypeStrong/ts-node#main
yarn test
Expand All @@ -78,8 +81,8 @@ jobs:
with:
node-version: 18
- run: |
corepack enable
corepack prepare yarn@1 --activate
npm install -g yarn
yarn --version
echo '{"scripts": {"test": "ts-node -vvv"}}' > package.json
yarn add https://github.com/TypeStrong/ts-node#main
yarn test

0 comments on commit 2a76a8f

Please sign in to comment.