File tree Expand file tree Collapse file tree 5 files changed +2433
-1780
lines changed
Expand file tree Collapse file tree 5 files changed +2433
-1780
lines changed Original file line number Diff line number Diff line change 1616
1717 strategy :
1818 matrix :
19- node-version : [10.x]
19+ node-version : [10.x, 12.x ]
2020
2121 steps :
2222 - uses : actions/checkout@v2
2626 node-version : ${{ matrix.node-version }}
2727 - run : npm ci
2828 - run : npm run build --if-present
29- - run : npm test
30- env :
31- CI : true
29+ - run : npm run lint
30+ # - run: npm test
31+ # env:
32+ # CI: true
Original file line number Diff line number Diff line change 1+ {
2+ "compact" : false ,
3+ "ignore" : [
4+ " .tmp"
5+ ],
6+ "presets" : [" @babel/env" ]
7+ }
Original file line number Diff line number Diff line change 11#!/usr/bin/env node
22
3- import { app } from '.. /app' ;
4- import { createDatabase } from '.. /helpers/dbHelper' ;
3+ import { app } from './app' ;
4+ import { createDatabase } from './helpers/dbHelper' ;
55
66createDatabase ( ) ;
77
You can’t perform that action at this time.
0 commit comments