2020-02-20 22:43:20 -05:00
|
|
|
name: NodeJS Test
|
|
|
|
|
|
|
|
on: push
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-node@v1
|
|
|
|
with:
|
2020-04-23 08:18:36 -07:00
|
|
|
node-version: 12.6
|
2020-02-21 22:19:59 -08:00
|
|
|
- run: which node
|
2020-02-20 22:43:20 -05:00
|
|
|
- name: Install Dependencies
|
|
|
|
run: npm install
|