Skip to content

Commit e4372d5

Browse files
authored
Merge pull request #16 from imteekay/test-ci
*
2 parents 13fcdbd + 415a1d4 commit e4372d5

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/push-ci.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Push CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
- name: Read .nvmrc
11+
run: echo "##[set-output name=NVMRC;]$(cat .nvmrc)"
12+
id: nvm
13+
14+
- name: Use Node.js (.nvmrc)
15+
uses: actions/setup-node@v2
16+
with:
17+
node-version: '${{ steps.nvm.outputs.NVMRC }}'
18+
19+
- name: Install dependencies
20+
run: yarn
21+
22+
- name: Test
23+
run: yarn test

0 commit comments

Comments
 (0)