Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: adjust integration-test #1569

Merged
merged 2 commits into from
Oct 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 3 additions & 7 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ jobs:
- name: Checkout yeoman-environment
uses: actions/checkout@v4
with:
repository: mshima/environment
path: yeoman-environment

- uses: actions/setup-node@v4
Expand All @@ -50,24 +49,21 @@ jobs:
jq 'del(.peerDependencies)' package.json.original > package.json
cat package.json
npm install
npm install ${{ github.repository }}#$GITHUB_SHA
npm install yeoman/environment#main
npm install ${{ github.repository }}#$GITHUB_SHA yeoman/environment#main
npm test

- name: Run yeoman-generator test
if: always()
run: |
cd $GITHUB_WORKSPACE/yeoman-generator
npm ci
npm install yeoman/yeoman-test#main
npm install yeoman/environment#main
npm install yeoman/yeoman-test#main yeoman/environment#main
npm test

- name: Run yeoman-environment test
if: always()
run: |
cd $GITHUB_WORKSPACE/yeoman-environment
npm ci
npm install ${{ github.repository }}#$GITHUB_SHA
npm install yeoman/yeoman-test#main
npm install yeoman-generator-7@${{ github.repository }}#$GITHUB_SHA yeoman/yeoman-test#main
npm test
Loading