Browse Source

Update config.yml

pull/38098/head
afc163 2 years ago
committed by GitHub
parent
commit
fdaf7957e8
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 13
      .circleci/config.yml

13
.circleci/config.yml

@ -12,22 +12,19 @@ jobs:
- checkout - checkout
- run: - run:
name: Install node_modules name: Install node_modules
command: yarn command: npm i
- run: - run:
name: Install argos cli name: Install argos cli
command: yarn add fast-glob lodash @argos-ci/core command: npm i fast-glob lodash @argos-ci/core
- run:
name: Install puppeteer
command: node node_modules/puppeteer/install.js
- run: - run:
name: Build dist file name: Build dist file
command: yarn dist command: npm run dist
- run: - run:
name: Run image screenshot tests name: Run image screenshot tests
command: yarn test-image command: npm run test-image
- run: - run:
name: Upload screenshots to Argos CI name: Upload screenshots to Argos CI
command: yarn argos command: npm run argos
# The resource_class feature allows configuring CPU and RAM resources for each job. Different resource classes are available for different executors. https://circleci.com/docs/2.0/configuration-reference/#resourceclass # The resource_class feature allows configuring CPU and RAM resources for each job. Different resource classes are available for different executors. https://circleci.com/docs/2.0/configuration-reference/#resourceclass
resource_class: large resource_class: large

Loading…
Cancel
Save