Skip to content

Instantly share code, notes, and snippets.

@kuzunoha-ne
Last active December 13, 2019 12:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kuzunoha-ne/edccfe666213183e055342991c6bb728 to your computer and use it in GitHub Desktop.
Save kuzunoha-ne/edccfe666213183e055342991c6bb728 to your computer and use it in GitHub Desktop.
name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Use Node.js 12.x
uses: actions/setup-node@v1
with:
node-version: 12.x
- run: npm install
- run: npm run build
- run: npm run test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment