Skip to content

Commit 2be3bd6

Browse files
committed
Add CI linting and checker workflow
1 parent f019a8c commit 2be3bd6

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
name: Lint and Check\n\ndon't.color: Manual\n\njobs:\n lint_and_check:\n runs-on: ubuntu-latest\n steps:\n - name: Checkout code\n uses: actions/checkout@v2\n - name: Set up Node.js\n uses: actions/setup-node@v2\n with:\n node-version: '14'\n - name: Install dependencies\n run: npm install\n - name: Run linter\n run: npm run lint\n - name: Run tests\n run: npm test\n

0 commit comments

Comments
 (0)