Keep other parts of CI

This commit is contained in:
Nathan Bierema 2021-06-19 19:21:35 -04:00
parent c75425b820
commit 3d9acd9358
2 changed files with 6 additions and 1 deletions

View File

@ -12,6 +12,11 @@ jobs:
steps:
- uses: actions/checkout@v2
- run: yarn install --immutable
- run: yarn prettier:check
- run: yarn build:all
- run: yarn lint:all
- run: yarn test:all
- working-directory: ./extension
run: yarn install --immutable
- working-directory: ./extension

View File

@ -5,4 +5,4 @@ import Adapter from 'enzyme-adapter-react-15.4';
Enzyme.configure({ adapter: new Adapter() });
jest.setTimeout(50000);
jest.setTimeout(20000);