• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/bash
2set -exuo pipefail
3
4# We run the services serially and in a non-detached state just that we can ensure predictable
5# exit codes for all of our integration tests, and we can ensure CI builds pass or fail appropriately
6
7# typescript-and-tslint-plugins-together
8docker-compose -f tests/integration/docker-compose.yml up --build --abort-on-container-exit typescript-and-tslint-plugins-together
9
10# vue-sfc
11docker-compose -f tests/integration/docker-compose.yml up --build --abort-on-container-exit vue-sfc
12
13# vue-jsx
14docker-compose -f tests/integration/docker-compose.yml up --build --abort-on-container-exit vue-jsx
15
16# recommended-does-not-require-program
17docker-compose -f tests/integration/docker-compose.yml up --build --abort-on-container-exit recommended-does-not-require-program
18
19# markdown
20docker-compose -f tests/integration/docker-compose.yml up --build --abort-on-container-exit markdown
21
22# eslint-v6
23docker-compose -f tests/integration/docker-compose.yml up --build --abort-on-container-exit eslint-v6
24