diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b00a332..b74c9de 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,3 +17,5 @@ jobs: run: yarn install - name: test run: yarn test:ci + - name: lint + run: yarn lint diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1ccbdeb..642ec43 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,6 +16,10 @@ jobs: node-version: 'lts/*' - name: Install dependencies run: yarn install + - name: test + run: yarn test:ci + - name: lint + run: yarn lint - name: Build run: yarn build - name: Release