Skip to content

Commit

Permalink
chore: adjust integration-test (#1569)
Browse files Browse the repository at this point in the history
* chore: adjust integration-test

* chore: cleanup
  • Loading branch information
mshima authored Oct 15, 2024
1 parent 0284afc commit ed9e4be
Showing 1 changed file with 3 additions and 7 deletions.
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

0 comments on commit ed9e4be

Please sign in to comment.