Skip to content

Commit 9b48ac4

Browse files
feat: add support of github actions to continiously track tests status
1 parent 73ceb1b commit 9b48ac4

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/main.yaml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: core-js-101
2+
3+
on:
4+
push:
5+
branches:
6+
- '*'
7+
8+
jobs:
9+
core-js-101:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: checkout sources
13+
uses: actions/checkout@master
14+
- name: setup node environment
15+
uses: actions/setup-node@v1
16+
with:
17+
node-version: '10.x'
18+
- name: install dependencies
19+
run: npm install
20+
- name: check styles
21+
run: npm run lint
22+
- name: run tests
23+
run: npm run test

0 commit comments

Comments
 (0)