Skip to content

Revert "perf: load vpc subnet details at stack create/update time" #22

Revert "perf: load vpc subnet details at stack create/update time"

Revert "perf: load vpc subnet details at stack create/update time" #22

Workflow file for this run

name: Check (confirm correct formatting and run tests)
on: [push, pull_request]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "lts/*"
- name: Print versions
run: |
git --version
node --version
npm --version
npx commitlint --version
- name: Install project packages
run: npm install
- name: Validate current commit (last commit) with commitlint
if: github.event_name == 'push'
run: npx commitlint --last --verbose
- name: Validate PR commits with commitlint
if: github.event_name == 'pull_request'
run: npx commitlint --from ${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }} --to ${{ github.event.pull_request.head.sha }} --verbose
- name: Check formatting
run: npm run lint
- name: Run tests
run: npm run test