Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
cspotcode committed May 6, 2023
1 parent 2ba3ab9 commit e8c9fe5
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion .github/workflows/e2e-git-installs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
echo '{"scripts": {"test": "ts-node -vvv"}}' > package.json
pnpm install https://github.com/TypeStrong/ts-node#main
pnpm test
yarn1:
yarn:
name: "yarn"
runs-on: ${{ matrix.os }}-latest
strategy:
Expand All @@ -65,3 +65,21 @@ jobs:
echo '{"scripts": {"test": "ts-node -vvv"}}' > package.json
yarn add ts-node@https://github.com/TypeStrong/ts-node#main
yarn test
yarn1:
name: "yarn1"
runs-on: ${{ matrix.os }}-latest
strategy:
matrix:
os: [ubuntu, windows]
steps:
# install node
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18
- run: |
corepack enable
corepack prepare yarn@1 --activate
echo '{"scripts": {"test": "ts-node -vvv"}}' > package.json
yarn add https://github.com/TypeStrong/ts-node#main
yarn test

0 comments on commit e8c9fe5

Please sign in to comment.