Browse Source

Update config.yml

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

15
.circleci/config.yml

@ -7,27 +7,24 @@ version: 2.1
jobs: jobs:
test-argos-ci: test-argos-ci:
docker: docker:
- image: cimg/node:lts - image: cimg/node:lts-browsers
steps: steps:
- checkout - checkout
- run: - run:
name: Install node_modules name: Install node_modules
command: npm i command: yarn
- run: - run:
name: Install argos cli name: Install argos cli
command: npm i fast-glob lodash @argos-ci/core command: yarn add 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: npm run dist command: yarn dist
- run: - run:
name: Run image screenshot tests name: Run image screenshot tests
command: npm run test-image command: yarn test-image
- run: - run:
name: Upload screenshots to Argos CI name: Upload screenshots to Argos CI
command: npm run argos command: yarn 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