Revert "chore(setup): run linter before building on workflows"

This reverts commit ac24256f34.
This commit is contained in:
Karol Sójko
2022-08-05 13:58:25 +02:00
parent ac24256f34
commit 355c70d7f7
3 changed files with 8 additions and 73 deletions

View File

@@ -9,37 +9,17 @@ on:
- '!packages/components/**'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v3
with:
registry-url: 'https://registry.npmjs.org'
node-version-file: '.nvmrc'
cache: 'yarn'
- name: Install dependencies
run: yarn install --immutable
- name: ESLint
run: yarn lint
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v3
with:
registry-url: 'https://registry.npmjs.org'
node-version-file: '.nvmrc'
cache: 'yarn'
- name: Install dependencies
run: yarn install --immutable
- name: Build
run: yarn build:all
- name: ESLint
run: yarn lint
- name: Build Android
run: yarn android:bundle
- name: Test