Skip to content

Commit

Permalink
name the workflow steps
Browse files Browse the repository at this point in the history
  • Loading branch information
cspotcode committed May 6, 2023
1 parent d9f67fb commit 8ef3777
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/e2e-git-installs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 18
- run: |
- name: Test
run: |
npm --version
echo '{"scripts": {"test": "ts-node -vvv"}}' > package.json
npm install https://github.com/TypeStrong/ts-node#e2e-git-installs
Expand All @@ -44,7 +45,8 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 18
- run: |
- name: Test
run: |
corepack enable
corepack prepare pnpm@latest --activate
pnpm --version
Expand All @@ -63,7 +65,8 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 18
- run: |
- name: Test
run: |
corepack enable
corepack prepare yarn@stable --activate
yarn --version
Expand All @@ -83,7 +86,8 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 18
- run: |
- name: Test
run: |
npm install -g yarn
yarn --version
echo '{"scripts": {"test": "ts-node -vvv"}}' > package.json
Expand Down

0 comments on commit 8ef3777

Please sign in to comment.