Rename nodejs.yml to main.yml

This commit is contained in:
Trevor Blades
2019-11-10 18:42:34 -08:00
committed by GitHub
parent 100ba62c97
commit 9dd9ef817e

12
.github/workflows/main.yml vendored Normal file
View File

@@ -0,0 +1,12 @@
name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12
- run: npm install
- run: npm test