Skip to content

add PurchaseConfirmation to StandDownPolicy #141

add PurchaseConfirmation to StandDownPolicy

add PurchaseConfirmation to StandDownPolicy #141

Workflow file for this run

name: GitHub Actions CI
on: [push]
jobs:
test:
runs-on: ubuntu-20.04
container:
image: node:14.19.3
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Cache Node Modules
id: cache-node-modules
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-node-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install Dependencies
if: steps.cache-node-modules.outputs.cache-hit != 'true'
run: |
yarn install --freeze-lockfile
- name: Run tests
run: |
CI=true yarn test