Skip to content

Instantly share code, notes, and snippets.

@hughevans
Created May 21, 2021 04:05
Show Gist options
  • Save hughevans/550be07ae4bc89b5a22cabb4b08d4543 to your computer and use it in GitHub Desktop.
Save hughevans/550be07ae4bc89b5a22cabb4b08d4543 to your computer and use it in GitHub Desktop.
Simple Github action for npm test
name: CDK snapshot tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Cache Node.js modules
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- run: npm ci
- run: npm test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment