This repository has been archived by the owner on Oct 30, 2024. It is now read-only.
chore(deps): update aws-cdk to v2.164.1 #2915
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
# yaml-language server: $schema=https://json.schemastore.org/github-action.json | |
name: Infra Code Linting & Testing | |
on: | |
push: | |
paths: | |
- "ops/**" | |
- ".github/workflows/ralphbot-ops-lint.yaml" | |
env: | |
ESLINT_USE_FLAT_CONFIG: "false" | |
jobs: | |
cdk-test: | |
strategy: | |
fail-fast: false | |
matrix: | |
task: [prettier, eslint, tsc, test] | |
defaults: | |
run: | |
working-directory: ./ops/ | |
name: ralphbot-cdk-stack-test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4.0.0 | |
with: | |
package_json_file: ./ops/package.json | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: .tool-versions | |
cache: pnpm | |
cache-dependency-path: ./ops/pnpm-lock.yaml | |
- name: Install dependencies | |
run: | | |
pnpm install --frozen-lockfile | |
- run: | | |
pnpm ${{ matrix.task }} |