Merge pull request #1049 from eswets/remove-preinstall-script #1727
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
name: Npm package | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
linting: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install dependencies | |
working-directory: typescript | |
run: | | |
npm ci | |
- name: Run eslint | |
working-directory: typescript | |
run: | | |
npm run lint | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install dependencies | |
working-directory: typescript | |
run: | | |
npm ci | |
- name: Run tests | |
working-directory: typescript | |
run: | | |
npm run test | |
example-run: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
example-name: ["simple-workspace", "multi-stack"] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install dependencies | |
working-directory: examples/${{ matrix.example-name }} | |
run: | | |
npm install aws-cdk | |
npm ci | |
- name: Run eslint | |
working-directory: examples/${{ matrix.example-name }} | |
run: | | |
npm run lint | |
- name: Run cdk synth | |
working-directory: examples/${{ matrix.example-name }} | |
run: | | |
npm run cdk synth |