chore(deps): upgrade configuration #3728
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
# ~~ Generated by projen. To modify, edit .projenrc.ts and run "npx projen". | |
name: integ | |
on: | |
pull_request: {} | |
workflow_dispatch: {} | |
jobs: | |
init: | |
runs-on: ${{ matrix.os }} | |
permissions: | |
contents: read | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: lts/* | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Set up Python 3.x | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.x | |
- name: Install pipenv | |
run: pip install pipenv | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.18" | |
- name: Run integration tests | |
run: yarn run integ:init | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- windows-latest | |
- macos-latest | |
- ubuntu-latest | |
init-typescript-app: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.nodeVersion }} | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Run integration tests | |
run: yarn run integ:init:typescript-app-npm | |
- name: Run integration tests | |
run: yarn run integ:init:typescript-app-yarn | |
strategy: | |
fail-fast: false | |
matrix: | |
nodeVersion: | |
- 18 |