Skip to content
This repository was archived by the owner on Nov 22, 2022. It is now read-only.

Commit a61ce17

Browse files
authored
Convert main.workflow to Actions V2 yml files (#21)
* converted main.workflow to Actions V2 yml files * rename job
1 parent 4a7f0e0 commit a61ce17

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

.github/main.workflow

Lines changed: 0 additions & 15 deletions
This file was deleted.

.github/workflows/push.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
on: push
2+
name: check
3+
jobs:
4+
test:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@master
8+
- name: install
9+
uses: docker://node:10.15.3
10+
with:
11+
args: npm install
12+
- name: test
13+
uses: docker://node:10.15.3
14+
with:
15+
args: npm test

0 commit comments

Comments
 (0)