Update deps #1229
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
name: Test | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
schedule: | |
- cron: '0 15 * * 5' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '20' | |
cache: npm | |
cache-dependency-path: | | |
package-lock.json | |
- name: Setup corepack | |
run: | | |
corepack enable npm | |
- name: Install | |
run: npm ci | |
- name: Package | |
run: npm pack | |
example: | |
strategy: | |
fail-fast: false | |
matrix: | |
node: [18, 20] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: npm | |
cache-dependency-path: | | |
package-lock.json | |
example/package-lock.json | |
- name: Setup corepack | |
run: | | |
corepack enable npm | |
- name: Install | |
run: | | |
npm ci | |
cd example | |
npm install | |
- name: Run | |
run: | | |
cd example | |
npm run cdk synth | |
test-finish: | |
runs-on: ubuntu-latest | |
needs: | |
- test | |
- example | |
steps: | |
- run: echo OK |