Skip to content

Feat/pass env vars to pulumi up executor #93

Feat/pass env vars to pulumi up executor

Feat/pass env vars to pulumi up executor #93

Workflow file for this run

name: PR Workflow
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
- name: Enable node
uses: actions/setup-node@master
with:
node-version: 14.x
- name: Cache .pnpm-store
uses: actions/cache@v1
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-node${{ matrix.node-version }}-${{ hashFiles('**/pnpm-lock.yaml') }}
- name: Install pnpm
run: |
npm i -g pnpm
pnpm set verify-store-integrity false
- name: pnpm install
run: |
pnpm install --frozen-lockfile
- name: Build packages
run: pnpm run build
- name: Lint types and code
run: pnpm run lint
- name: Run tests
run: pnpm test
- name: Run e2e tests
run: pnpm e2e