initial commit

This commit is contained in:
Alif Rachmawadi
2019-08-13 17:11:30 +07:00
commit 3aa0d2f642
188 changed files with 19613 additions and 0 deletions

26
.github/workflows/workflow.yml vendored Normal file
View File

@@ -0,0 +1,26 @@
name: Main workflow
on: [push]
jobs:
run:
name: Run
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout
uses: actions/checkout@master
- name: Set Node.js 10.x
uses: actions/setup-node@master
with:
version: 10.x
- name: npm install
run: npm install
- name: Lint
run: npm run format-check
- name: npm test
run: npm test