add withEnvironmentRun api #379
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Integration Build | |
on: | |
push: | |
branches-ignore: | |
- 'dependabot/**' | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
node-version: [18.x] | |
steps: | |
- name: Checkout yeoman-test | |
uses: actions/checkout@v3 | |
with: | |
path: yeoman-test | |
- name: Checkout yeoman-generator | |
uses: actions/checkout@v3 | |
with: | |
repository: yeoman/generator | |
path: yeoman-generator | |
- name: Checkout yeoman-environment | |
uses: actions/checkout@v3 | |
with: | |
repository: yeoman/environment | |
path: yeoman-environment | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Run yeoman-test test | |
if: false | |
run: | | |
cd $GITHUB_WORKSPACE/yeoman-test | |
npm ci | |
npm install yeoman/generator#main | |
npm install yeoman/environment#main | |
npm test | |
- name: Run yeoman-generator test | |
if: false | |
run: | | |
cd $GITHUB_WORKSPACE/yeoman-generator | |
npm ci | |
npm install ${{ github.repository }}#$GITHUB_SHA | |
npm install yeoman/environment#main | |
npm test | |
- name: Run yeoman-environment test | |
if: false | |
run: | | |
cd $GITHUB_WORKSPACE/yeoman-environment | |
npm ci | |
npm install ${{ github.repository }}#$GITHUB_SHA | |
npm install yeoman/generator#main | |
npm test |