diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7cc8e74..28287e3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,6 +5,16 @@ on: branches: - '*' jobs: + lint: + runs-on: ubuntu-18.04 + name: Lint + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v1 + with: + node-version: '12' + - run: yarn + - run: yarn lint build: runs-on: ubuntu-18.04 name: Test @@ -14,4 +24,4 @@ jobs: with: node-version: '12' - run: yarn - - run: yarn test \ No newline at end of file + - run: yarn test