Skip to content

Instantly share code, notes, and snippets.

@cesalberca
Created March 19, 2020 19:31
Show Gist options
  • Save cesalberca/13332d594efe1936fd873c3329254e01 to your computer and use it in GitHub Desktop.
Save cesalberca/13332d594efe1936fd873c3329254e01 to your computer and use it in GitHub Desktop.
name: CI
on:
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '12.16.1'
- uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: install
run: npm ci
- name: test
run: CI=true npm test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment