added as a new job to lookup formar fix iisues #107
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: pre-merge-checks | ||
on: | ||
push: | ||
branches: test/issue#257-2 | ||
jobs: | ||
Lint-Check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: npm install | ||
- run: npm run lint-check | ||
- run: npm run format-check | ||
Lint-Fix: | ||
needs: [Lint-Check] | ||
steps: | ||
- run: cat src/index.ts | ||
- run: cat config/envVarCheck.ts | ||
- run: npm run format-fix | ||
- run: cat src/index.ts | ||
- run: cat config/envVarCheck.ts |