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.
mvfront-react/.circleci/config.yml

20 lines
451 B

version: 2.1
jobs:
build:
docker:
- image: cimg/node:lts
steps:
- checkout
- run:
name: update-yarn
command: 'curl --compressed -o- -L https://yarnpkg.com/install.sh | bash'
- run:
name: install-dependencies
command: yarn install
- run:
name: compile-translations
command: yarn translate
- run:
name: test
command: yarn test