Skip to content

Instantly share code, notes, and snippets.

@cesalberca
Last active March 19, 2020 19:03
Show Gist options
  • Save cesalberca/8ca7025b1349222671f147ba7ea43903 to your computer and use it in GitHub Desktop.
Save cesalberca/8ca7025b1349222671f147ba7ea43903 to your computer and use it in GitHub Desktop.
name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '12.16.1'
- name: install
run: npm ci
- name: test
run: npm test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment