From 8d3c162015bd513b1e4542ea0b00f19348287c49 Mon Sep 17 00:00:00 2001 From: Alexander Zeitler Date: Sat, 10 Apr 2021 23:27:31 +0200 Subject: [PATCH] ci(style): lint --- .github/workflows/ci.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) 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