Skip to content

[Do Not Merge] Test adding and modifying github actions #1

[Do Not Merge] Test adding and modifying github actions

[Do Not Merge] Test adding and modifying github actions #1

Workflow file for this run

name: Test Action
on: [push, pull_request]
jobs:
test-action:
strategy:
matrix:
node-version: ['18.x']
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
defaults:
run:
working-directory: ./deployment/cdk/opensearch-service-migration
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install NPM dependencies
run: npm ci
- name: Run CDK Jest Tests
run: npm test