diff --git a/.github/workflows/audit.yaml b/.github/workflows/audit.yaml new file mode 100644 index 0000000..ee3bdd2 --- /dev/null +++ b/.github/workflows/audit.yaml @@ -0,0 +1,15 @@ +name: Code Audit + +on: [push, pull_request] + +jobs: + job1: + runs-on: ubuntu-16.04 + steps: + - uses: actions/checkout@v2 + - name: Install + run: npm i + working-directory: ./exercise-1 + - name: Lint + run: npm run lint + working-directory: ./exercise-1