Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

chore: set up CI with Azure Pipelines#98

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
JamesHenry merged 17 commits intomasterfromazure-pipelines
Jan 21, 2019
Merged
Show file tree
Hide file tree
Changes fromall commits
Commits
Show all changes
17 commits
Select commitHold shift + click to select a range
7b56c96
chore: set up CI with Azure Pipelines
azure-pipelines[bot]Jan 20, 2019
48ae9db
chore: try maxParallel
JamesHenryJan 20, 2019
412580b
build: add yarn test
JamesHenryJan 20, 2019
4d5ed11
build: try multiple jobs
JamesHenryJan 20, 2019
cf3a3ae
build: try job
JamesHenryJan 20, 2019
e940bb9
build: try job
JamesHenryJan 20, 2019
a100a1f
build: try multiple jobs
JamesHenryJan 20, 2019
e171a96
build: better job names
JamesHenryJan 20, 2019
e5d7393
build: format yaml
JamesHenryJan 20, 2019
d35015f
build: try dockercompose task
JamesHenryJan 21, 2019
0adee6e
build: alt dockercompose attempt
JamesHenryJan 21, 2019
b951128
build: uncomment steps, delete travis
JamesHenryJan 21, 2019
4e7b0f3
build: try npx for codecov
JamesHenryJan 21, 2019
e1c6bb2
build: add codecov token
JamesHenryJan 21, 2019
9c9302d
build: replace old codecov token, set secret
JamesHenryJan 21, 2019
12d4b7a
build: remove -t
JamesHenryJan 21, 2019
275ff1d
build: -t $(CODECOV_TOKEN)
JamesHenryJan 21, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 0 additions & 38 deletions.travis.yml
View file
Open in desktop

This file was deleted.

62 changes: 62 additions & 0 deletionsazure-pipelines.yml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
trigger:
- master

jobs:
- job: primary_code_validation_and_tests
displayName: Primary code validation and tests
pool:
vmImage: 'Ubuntu-16.04'
steps:
- task: NodeTool@0
inputs:
versionSpec: 11
displayName: 'Install Node.js 11'

- script: |
# This also runs a build as part of the postinstall
# bootstrap
yarn --ignore-engines --frozen-lockfile

- script: |
yarn check-format
displayName: 'Check code formatting'

- script: |
yarn test
displayName: 'Run unit tests'

- script: |
yarn integration-tests
displayName: 'Run integrations tests'

- script: |
npx codecov -t $(CODECOV_TOKEN)
displayName: 'Publish code coverage report'

- job: unit_tests_on_other_node_versions
displayName: Run unit tests on other Node.js versions
pool:
vmImage: 'Ubuntu-16.04'
strategy:
maxParallel: 3
matrix:
node_10_x:
node_version: 10.x
node_8_x:
node_version: 8.x
node_6_x:
node_version: 6.x
steps:
- task: NodeTool@0
inputs:
versionSpec: $(node_version)
displayName: 'Install Node.js $(node_version)'

- script: |
# This also runs a build as part of the postinstall
# bootstrap
yarn --ignore-engines --frozen-lockfile

- script: |
yarn test
displayName: 'Run unit tests'

[8]ページ先頭

©2009-2025 Movatter.jp