You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.2 KiB
36 lines
1.2 KiB
# Use the latest 2.1 version of CircleCI pipeline process engine.
|
|
# See: https://circleci.com/docs/2.0/configuration-reference
|
|
version: 2.1
|
|
|
|
# Define a job to be invoked later in a workflow.
|
|
# See: https://circleci.com/docs/2.0/configuration-reference/#jobs
|
|
jobs:
|
|
test-argos-ci:
|
|
docker:
|
|
- image: cimg/node:16.20.0-browsers
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
name: Install node_modules
|
|
command: npm i
|
|
- run:
|
|
name: Install argos cli
|
|
command: npm i fast-glob lodash @argos-ci/core
|
|
- run:
|
|
name: Build dist file
|
|
command: npm run dist
|
|
- run:
|
|
name: Run image screenshot tests
|
|
command: npm run test-image
|
|
- run:
|
|
name: Upload screenshots to Argos CI
|
|
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
|
|
resource_class: large
|
|
|
|
# Invoke jobs via workflows
|
|
# See: https://circleci.com/docs/2.0/configuration-reference/#workflows
|
|
workflows:
|
|
test-argos-ci-workflow:
|
|
jobs:
|
|
- test-argos-ci
|
|
|