Browse Source

Update ci.yml

master
yuriy0803 2 years ago committed by GitHub
parent
commit
19b591b04d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      .github/workflows/ci.yml

8
.github/workflows/ci.yml

@ -43,12 +43,16 @@ jobs:
- name: Install dependencies 👨🏻💻 - name: Install dependencies 👨🏻💻
run: yarn run: yarn
- name: Run linter 👀 - name: Run linter in root directory 👀
run: yarn lint run: yarn lint
- name: Run tests 🧪 - name: Run tests in root directory 🧪
run: yarn test run: yarn test
- name: Run tests in new-web directory 📂 - name: Run tests in new-web directory 📂
working-directory: new-web working-directory: new-web
run: yarn test run: yarn test
- name: Run lint in new-web directory 📂
working-directory: new-web
run: yarn lint

Loading…
Cancel
Save