Skip to content

test-command #24

test-command

test-command #24

Workflow file for this run

on:
repository_dispatch:
types: [test-command]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
- name: Enable node
uses: actions/setup-node@master
with:
node-version: 16.x
- name: Install Pulumi CLI
uses: pulumi/action-install-pulumi-cli@v1
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_KEY }}
aws-region: ap-southeast-2
role-to-assume: ${{ secrets.AWS_DEV_ACCOUNT_ROLE }}
role-skip-session-tagging: true
role-duration-seconds: 3600
- 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: Run tests
run: pnpm test