From 701d53d153d5be8cb6fa6f34bd0c75f28d1e7e27 Mon Sep 17 00:00:00 2001 From: Dylan Haussermann <35588783+DHaussermann@users.noreply.github.com> Date: Thu, 16 Jan 2020 16:19:33 -0500 Subject: [PATCH 01/15] Test 2 Test 2 --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b9c65c8..e9a319c 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ # hello-world Dylan's test repository -Now with a 3rd line of code \ No newline at end of file +Now with a 3rd line of code +Blah From 6bfb0c333760ef490ee27d5c51e41d0f181af845 Mon Sep 17 00:00:00 2001 From: DylanH20 <51461395+DylanH20@users.noreply.github.com> Date: Fri, 17 Jan 2020 12:29:27 -0500 Subject: [PATCH 02/15] Comment Comment test //This is *not* a comment This is *not* a comment --- new create | 1 + 1 file changed, 1 insertion(+) diff --git a/new create b/new create index c423ab5..d89cafb 100644 --- a/new create +++ b/new create @@ -1,2 +1,3 @@ Pickles3 +Pickles4 From 7d8af79cd5ecc392a713dcf3bf1034c5a8ebb764 Mon Sep 17 00:00:00 2001 From: Dylan Haussermann <35588783+DHaussermann@users.noreply.github.com> Date: Mon, 17 Aug 2020 12:53:58 -0400 Subject: [PATCH 03/15] Update issue templates --- .github/ISSUE_TEMPLATE/bug_report.md | 38 ++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..dd84ea7 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,38 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: '' +assignees: '' + +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behavior: +1. Go to '...' +2. Click on '....' +3. Scroll down to '....' +4. See error + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Desktop (please complete the following information):** + - OS: [e.g. iOS] + - Browser [e.g. chrome, safari] + - Version [e.g. 22] + +**Smartphone (please complete the following information):** + - Device: [e.g. iPhone6] + - OS: [e.g. iOS8.1] + - Browser [e.g. stock browser, safari] + - Version [e.g. 22] + +**Additional context** +Add any other context about the problem here. From 39a6f321096fd6b582dbc26f0c803ab37c0935e8 Mon Sep 17 00:00:00 2001 From: Dylan Haussermann <35588783+DHaussermann@users.noreply.github.com> Date: Thu, 21 Jan 2021 15:56:32 -0500 Subject: [PATCH 04/15] Create token-e2e-test.js --- token-e2e-test.js | 326 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 326 insertions(+) create mode 100644 token-e2e-test.js diff --git a/token-e2e-test.js b/token-e2e-test.js new file mode 100644 index 0000000..da2c110 --- /dev/null +++ b/token-e2e-test.js @@ -0,0 +1,326 @@ +// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. +// See LICENSE.txt for license information. + +import {getRandomId} from '../utils/index'; + +import {getAdminAccount} from '../support/env'; + +const sysadmin = getAdminAccount(); + +describe('Test AutoLink', function () { + let team1; + let team2; + let regularUser; + let channel1; + let linkName = `jira${getRandomId()}`; + + before(() => { + cy.apiUpdateConfig({ + PluginSettings: { + PluginStates: {'mattermost-autolink': {Enable: true}}, + Plugins: {'mattermost-autolink': {enableadmincommand: true}}, + }, + }); + + cy.apiInitSetup().then(({team, user, channel}) => { + team1 = team; + channel1 = channel; + regularUser = user; + + cy.visit(`/${team1.name}/channels/town-square`); + }); + + cy.apiCreateTeam('test-team2', 'Test Team2').then(({team}) => { + team2 = team; + }); + + // Istall Plugin using API and enable admin commands + cy.apiInstallPluginFromUrl( + `https://github.com/mattermost/mattermost-plugin-autolink/releases/download/v1.2.0/mattermost-autolink-1.2.0.tar.gz`, + true, + ); + }); + + beforeEach(() => { + cy.apiAdminLogin(); + }); + + it('Autolink autocomple is working', function () { + //Ensure autilink slash commands are ebabeled + cy.get('#post_textbox').clear(); + cy.get('#post_textbox').type('/a'); + cy.contains('autolink [command]'); + cy.contains('autolink [command]').click(); + }); + + it('Create link', function () { + // Add a link + cy.get('#post_textbox').clear(); + cy.get('#post_textbox').type('/a'); + cy.contains('autolink [command]').click(); // correct locator - waiting on bug fix + cy.get('#post_textbox').type(`add ${linkName}`); + cy.get('#post_textbox').should('contain', `/autolink add ${linkName}`); + cy.get('#post_textbox'); + cy.wait(250); + cy.get('#post_textbox').type('{enter}', {force: true}); + cy.contains(`: ${linkName}`); + }); + + it('Add a template', function () { + //Add a template + cy.get('#post_textbox').clear(); + cy.get('#post_textbox') + .should('be.focused') + .type( + `/autolink set ${linkName} ` + + 'Template [MM-${{}jira_id{}}](https://mattermost.atlassian.net/browse/MM-${{}jira_id{}}){enter}', + ); + cy.contains('Template: '); + cy.waitUntil(() => { + return cy.getLastPost().then((el) => { + return el.find('code'); + }); + }); + cy.wait(250); + cy.getLastPost().within(() => { + cy.get('code').should( + 'have.text', + '[MM-${jira_id}](https://mattermost.atlassian.net/browse/MM-${jira_id})', + ); + }); + }); + + it('Add a Pattern', function () { + // Add a patern + cy.get('#post_textbox').clear(); + cy.get('#post_textbox').type(`/autolink set ${linkName} Pattern (MM)(-)(?P\\d+){enter}`); + cy.contains('Pattern: '); + }); + + it('Pattern is applied', function () { + //Pattern is applied + cy.get('#post_textbox').clear; + cy.postMessage('MM-1234{enter}'); + cy.getLastPost().within(() => { + cy.get('.theme.markdown__link') + .should('have.attr', 'href', 'https://mattermost.atlassian.net/browse/MM-1234') + .and('have.text', 'MM-1234'); + }); + }); + + it('Add a Scope', function () { + // Add a scope + cy.get('#post_textbox').clear(); + cy.get('#post_textbox').type(`/autolink set ${linkName} Scope ${team1.name}{enter}`); + cy.contains('Scope: '); + cy.contains(`${team1.name}`); + }); + + it('Pattern applied in scope only', function () { + //pattern applied in Team + + cy.get(`#${team1.name}TeamButton`).click(); + cy.wait(500); + cy.get('#post_textbox').type('MM-1234'); + cy.wait(1000); + cy.get('#post_textbox').type('{enter}'); + cy.getLastPost().within(() => { + cy.get('.theme.markdown__link') + .should('have.attr', 'href', 'https://mattermost.atlassian.net/browse/MM-1234') + .and('have.text', 'MM-1234'); + }); + //pattern NOT applied in Team + cy.get(`#${team2.name}TeamButton`).should('have.attr', 'href', `/${team2.name}`).click(); + cy.get('#post_textbox').should('be.visible').clear(); //.should should resolve need for wait + cy.wait(500); + cy.postMessage('MM-1234'); + cy.getLastPost().within(() => { + cy.get('p').should('have.text', 'MM-1234'); + }); + cy.get(`#${team1.name}TeamButton`).click(); + cy.get('#post_textbox').should('be.focused'); + }); + + it('Disable link ', function () { + //Confirm enabled state + cy.get(`#${team1.name}TeamButton`).click(); + cy.wait(250); + cy.postMessage('MM-2222{enter}'); + cy.getLastPost().within(() => { + cy.get('.theme.markdown__link') + .should('have.attr', 'href', 'https://mattermost.atlassian.net/browse/MM-2222') + .and('have.text', 'MM-2222'); + }); + //Disable + cy.postMessage(`/autolink disable ${linkName}{enter}`); + cy.wait(1500); + + cy.getLastPost().within((el) => { + console.log('look here'); + console.log(el); + cy.get('del').should('have.text', linkName); + }); + cy.wait(499); + cy.get('#post_textbox').clear(); + cy.wait(250); + cy.get('#post_textbox').type('MM-2222{enter}'); + cy.getLastPost().within(() => { + cy.get('p').should('have.text', 'MM-2222'); + }); + }); + + it('enable link ', function () { + cy.get('#post_textbox').clear(); + cy.get('#post_textbox').type(`/autolink enable ${linkName}{enter}`); + cy.contains(`: ${linkName}`); + cy.get('#post_textbox').clear(); + cy.wait(250); + cy.get('#post_textbox').type('MM-2222{enter}'); + cy.getLastPost().within(() => { + cy.get('.theme.markdown__link') + .should('have.attr', 'href', 'https://mattermost.atlassian.net/browse/MM-2222') + .and('have.text', 'MM-2222'); + }); + }); + + it('Apply patterns on edit false by default', function () { + cy.get('#post_textbox').clear(); + cy.get('#post_textbox').type('NN-5678{enter}'); + cy.wait(1000); + cy.get('#post_textbox').should('be.focused').type('{uparrow}'); + cy.wait(250); + cy.get('#edit_textbox').should('be.focused').type('{home}{del}{del}MM{enter}'); + cy.getLastPost().within(() => { + cy.get('p').should('have.text', 'MM-5678'); + }); + }); + + it('Apply patterns on edit true', function () { + // Update config + cy.apiUpdateConfig({ + PluginSettings: { + PluginStates: {'mattermost-autolink': {Enable: true}}, + Plugins: { + 'mattermost-autolink': {enableadmincommand: true}, + 'mattermost-autolink': {enableonupdate: true}, + }, + }, + }); + + cy.visit(`/${team1.name}/channels/town-square`); + + //Ensure pattern is applied on edit + + cy.get('#post_textbox').clear(); + cy.get('#post_textbox').type('NN-5678{enter}'); + cy.wait(1000); + cy.get('#post_textbox').type('{uparrow}'); + cy.wait(250); + cy.get('#edit_textbox').type('{home}{del}{del}MM{enter}'); + cy.getLastPost().within(() => { + cy.get('.theme.markdown__link') + .should('have.attr', 'href', 'https://mattermost.atlassian.net/browse/MM-5678') + .and('have.text', 'MM-5678'); + }); + }); + + it('Non sysadmin can not use slash commands', function () { + cy.apiLogin(regularUser); + cy.visit(`/${team1.name}/channels/town-square`); + // Ensure autolink commands are non functinal + cy.postMessage('/autolink list {enter}'); + cy.uiWaitUntilMessagePostedIncludes(` commands can only be executed by a system administrator or `); + cy.getLastPost().within(() => { + cy.contains(` commands can only be executed by a system administrator or `); + }); + cy.postMessage('/autolink add pickles{enter}'); + cy.wait(1000); + cy.uiWaitUntilMessagePostedIncludes(` commands can only be executed by a system administrator or `); + cy.getLastPost().within(() => { + cy.contains(` commands can only be executed by a system administrator or `); + }); + }); + + it('User added as plugin admin', function () { + cy.apiUpdateConfig({ + PluginSettings: { + PluginStates: {'mattermost-autolink': {Enable: true}}, + Plugins: { + 'mattermost-autolink': {enableadmincommand: true}, + 'mattermost-autolink': {enableonupdate: true}, + 'mattermost-autolink': {pluginadmins: regularUser.id}, + }, + }, + }); + cy.apiLogin(regularUser); + cy.visit(`/${team1.name}/channels/town-square`); + + cy.get('#post_textbox').should('be.visible'); + cy.wait(250); + cy.postMessage('/autolink list {enter}'); + cy.postMessage('{enter}'); + cy.get('#post_textbox').should('be.visible'); + cy.getLastPost().within(() => { + cy.contains(`: ${linkName}`); + }); + cy.postMessage(`/autolink disable ${linkName}{enter}`); + cy.wait(1500); + + cy.getLastPost().within((el) => { + console.log('look here'); + console.log(el); + cy.get('del').should('have.text', linkName); + }); + }); + + it('Common links work', function () { + //ESR Link + let esrLinkName = `ESR${getRandomId()}`; + cy.postMessage(`/autolink add ${esrLinkName}`); + cy.postMessage(`/autolink set ${esrLinkName} Pattern ESR`); + cy.postMessage( + `/autolink set ${esrLinkName} Template [ESR](https://docs.mattermost.com/prcess/traing.html#rhs)`, + ); + cy.postMessage(`A post with ESR link?`); + cy.getLastPost().within(() => { + cy.get('.theme.markdown__link') + .should('have.attr', 'href', 'https://docs.mattermost.com/prcess/traing.html#rhs') + .and('have.text', 'ESR'); + }); + //GitHub Link + let gitLinkName = `GitHub${getRandomId()}`; + cy.postMessage(`/autolink add ${gitLinkName}`); + cy.postMessage( + `/autolink set ${gitLinkName} ` + 'Pattern https://github\\.com/mattermost/(?P.+)/pull/(?P\\d+)', + ); + cy.postMessage( + `/autolink set ${gitLinkName} ` + + 'Template [pr-${{}repo{}}-${{}id{}}](https://github.com/mattermost/${{}repo{}}/pull/${{}id{}})', + ); + cy.postMessage(`https://github.com/mattermost/mattermost-server/pull/14756`); + cy.getLastPost().within(() => { + cy.get('.theme.markdown__link') + .should('have.attr', 'href', 'https://github.com/mattermost/mattermost-server/pull/14756') + .and('have.text', 'pr-mattermost-server-14756'); + }); + }); + + it('Mutiple GitHub links', function () { + cy.postMessage( + 'https://github.com/mattermost/mattermost-webapp/pull/2859 and https://github.com/mattermost/mattermost-webapp/pull/2858', + ); + cy.getLastPost().within(() => { + cy.get('.theme.markdown__link') + .eq(0) + .should('have.attr', 'href', 'https://github.com/mattermost/mattermost-webapp/pull/2859') + .and('have.text', 'pr-mattermost-webapp-2859'); + }); + cy.getLastPost().within(() => { + cy.get('.theme.markdown__link') + .eq(1) + .should('have.attr', 'href', 'https://github.com/mattermost/mattermost-webapp/pull/2858') + .and('have.text', 'pr-mattermost-webapp-2858'); + }); + }); + +}); From f8512d74aa5528e1afcb824c1b554ef676e17415 Mon Sep 17 00:00:00 2001 From: Prapti Date: Thu, 21 Jan 2021 13:48:01 -0800 Subject: [PATCH 05/15] Update token-e2e-test.js Added block comment to the top of the file. --- token-e2e-test.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/token-e2e-test.js b/token-e2e-test.js index da2c110..42ff155 100644 --- a/token-e2e-test.js +++ b/token-e2e-test.js @@ -1,6 +1,12 @@ // Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. // See LICENSE.txt for license information. +// *************************************************************** +// - [#] indicates a test step (e.g. # Go to a page) +// - [*] indicates an assertion (e.g. * Check the title) +// - Use element ID when selecting an element. Create one if none. +// *************************************************************** + import {getRandomId} from '../utils/index'; import {getAdminAccount} from '../support/env'; From 16d4991d378aa775f1ebfe35ac3f0df8a3a52107 Mon Sep 17 00:00:00 2001 From: Prapti Date: Thu, 21 Jan 2021 13:49:58 -0800 Subject: [PATCH 06/15] Update token-e2e-test.js Adding comment --- token-e2e-test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/token-e2e-test.js b/token-e2e-test.js index 42ff155..c5f4d8d 100644 --- a/token-e2e-test.js +++ b/token-e2e-test.js @@ -8,7 +8,6 @@ // *************************************************************** import {getRandomId} from '../utils/index'; - import {getAdminAccount} from '../support/env'; const sysadmin = getAdminAccount(); @@ -23,6 +22,7 @@ describe('Test AutoLink', function () { before(() => { cy.apiUpdateConfig({ PluginSettings: { + // # Enable the 'autolink' plugin and enable the admin account for it PluginStates: {'mattermost-autolink': {Enable: true}}, Plugins: {'mattermost-autolink': {enableadmincommand: true}}, }, @@ -40,7 +40,7 @@ describe('Test AutoLink', function () { team2 = team; }); - // Istall Plugin using API and enable admin commands + // # Install Plugin using API and enable admin commands cy.apiInstallPluginFromUrl( `https://github.com/mattermost/mattermost-plugin-autolink/releases/download/v1.2.0/mattermost-autolink-1.2.0.tar.gz`, true, From 17da1c82812ff0bb3601a03f285a41d5b90296a8 Mon Sep 17 00:00:00 2001 From: Dylan Haussermann <35588783+DHaussermann@users.noreply.github.com> Date: Thu, 11 Feb 2021 11:15:52 -0500 Subject: [PATCH 07/15] Add .circleci/config.yml --- .circleci/config.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..dbfd56f --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,7 @@ +version: 2.1 +orbs: + node: circleci/node@3.0.0 +workflows: + node-tests: + jobs: + - node/test From a8b46bf3fcd8648e48c88f028491f4b00db72e2a Mon Sep 17 00:00:00 2001 From: Dylan Haussermann <35588783+DHaussermann@users.noreply.github.com> Date: Tue, 23 Feb 2021 17:14:23 -0500 Subject: [PATCH 08/15] Add .circleci/config.yml From f9c1414341f8a92cee413bce4eed7c8c6b79ea33 Mon Sep 17 00:00:00 2001 From: Dylan Haussermann <35588783+DHaussermann@users.noreply.github.com> Date: Wed, 24 Feb 2021 09:25:37 -0500 Subject: [PATCH 09/15] Update config.yml --- .circleci/config.yml | 52 +++++++++++++++++++++++++++++++++++++++----- 1 file changed, 47 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index dbfd56f..f5ff52b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,7 +1,49 @@ -version: 2.1 -orbs: - node: circleci/node@3.0.0 +version: 2.0 + +jobs: + "ruby-2.2": + docker: + - image: circleci/ruby:2.2-node + - image: circleci/postgres:9.4.12-alpine + working_directory: ~/circleci-demo-workflows + steps: + - checkout + - run: bundle install --path vendor/bundle + - run: bundle exec rake db:create db:schema:load + - run: + name: Run tests + command: rake + + "ruby-2.3": + docker: + - image: circleci/ruby:2.3-node + - image: circleci/postgres:9.4.12-alpine + working_directory: ~/circleci-demo-workflows + steps: + - checkout + - run: bundle install --path vendor/bundle + - run: bundle exec rake db:create db:schema:load + - run: + name: Run tests + command: rake + + "ruby-2.4": + docker: + - image: circleci/ruby:2.4-node + - image: circleci/postgres:9.4.12-alpine + working_directory: ~/circleci-demo-workflows + steps: + - checkout + - run: bundle install --path vendor/bundle + - run: bundle exec rake db:create db:schema:load + - run: + name: Run tests + command: rake + workflows: - node-tests: + version: 2 + build: jobs: - - node/test + - "ruby-2.2" + - "ruby-2.3" + - "ruby-2.4" From bfdac32df48336daa05ef948e6c371ba478e8aa3 Mon Sep 17 00:00:00 2001 From: Dylan Haussermann <35588783+DHaussermann@users.noreply.github.com> Date: Wed, 24 Feb 2021 11:54:15 -0500 Subject: [PATCH 10/15] Update config.yml --- .circleci/config.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f5ff52b..1354869 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,5 +1,6 @@ -version: 2.0 - +version: 2.1 +orbs: + mattermost-plugin-notify: nathanaelhoun/mattermost-plugin-notify@1.2.0 jobs: "ruby-2.2": docker: From 64b11691272e4241b91a658401e89d9269e97f0e Mon Sep 17 00:00:00 2001 From: Dylan Haussermann <35588783+DHaussermann@users.noreply.github.com> Date: Wed, 24 Feb 2021 12:21:41 -0500 Subject: [PATCH 11/15] Update config.yml --- .circleci/config.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 1354869..5ad3775 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -40,7 +40,10 @@ jobs: - run: name: Run tests command: rake - + - mattermost-plugin-notify/status: + failure_message: This very important job has failed! Ping @senior-developer + success_message: 'Life is beautiful, my job has succeeded!' + webhook: webhook URL workflows: version: 2 build: From 173bff1a74254e236fec653e98fab98a1ea7815c Mon Sep 17 00:00:00 2001 From: Dylan Haussermann <35588783+DHaussermann@users.noreply.github.com> Date: Wed, 24 Feb 2021 12:22:35 -0500 Subject: [PATCH 12/15] Update config.yml --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 5ad3775..d996651 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -43,7 +43,7 @@ jobs: - mattermost-plugin-notify/status: failure_message: This very important job has failed! Ping @senior-developer success_message: 'Life is beautiful, my job has succeeded!' - webhook: webhook URL + webhook: https://dkh-sandbox.test.mattermost.cloud/plugins/com.github.nathanaelhoun.plugin-circleci/hooks/jvHVYK4lKthVNhRKhBPMgYFTtFytwspq workflows: version: 2 build: From 8336e36bf59ae963eec96d7723fb36a7e0e22e91 Mon Sep 17 00:00:00 2001 From: Dylan Haussermann <35588783+DHaussermann@users.noreply.github.com> Date: Wed, 24 Feb 2021 13:11:37 -0500 Subject: [PATCH 13/15] Update config.yml --- .circleci/config.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index d996651..5a29dd9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,6 +3,10 @@ orbs: mattermost-plugin-notify: nathanaelhoun/mattermost-plugin-notify@1.2.0 jobs: "ruby-2.2": + - mattermost-plugin-notify/status: + failure_message: This very important job has failed! Ping @senior-developer + success_message: 'Life is beautiful, my job has succeeded!' + webhook: https://dkh-sandbox.test.mattermost.cloud/plugins/com.github.nathanaelhoun.plugin-circleci/hooks/jvHVYK4lKthVNhRKhBPMgYFTtFytwspq docker: - image: circleci/ruby:2.2-node - image: circleci/postgres:9.4.12-alpine @@ -40,10 +44,7 @@ jobs: - run: name: Run tests command: rake - - mattermost-plugin-notify/status: - failure_message: This very important job has failed! Ping @senior-developer - success_message: 'Life is beautiful, my job has succeeded!' - webhook: https://dkh-sandbox.test.mattermost.cloud/plugins/com.github.nathanaelhoun.plugin-circleci/hooks/jvHVYK4lKthVNhRKhBPMgYFTtFytwspq + workflows: version: 2 build: From 827e4e373a0901493b191bdff6205c6d3fd89b8c Mon Sep 17 00:00:00 2001 From: Dylan Haussermann <35588783+DHaussermann@users.noreply.github.com> Date: Mon, 16 Jan 2023 13:24:55 -0500 Subject: [PATCH 14/15] Set up CI with Azure Pipelines [skip ci] --- azure-pipelines.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..27a798a --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,19 @@ +# Starter pipeline +# Start with a minimal pipeline that you can customize to build and deploy your code. +# Add steps that build, run tests, deploy, and more: +# https://aka.ms/yaml + +trigger: +- master + +pool: + vmImage: ubuntu-latest + +steps: +- script: echo Hello, world! + displayName: 'Run a one-line script' + +- script: | + echo Add other tasks to build, test, and deploy your project. + echo See https://aka.ms/yaml + displayName: 'Run a multi-line script' From ba668c1fc39a6530c4b4d843ea32ae83c462c569 Mon Sep 17 00:00:00 2001 From: Dylan Haussermann <35588783+DHaussermann@users.noreply.github.com> Date: Thu, 23 Feb 2023 01:41:50 -0500 Subject: [PATCH 15/15] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index e9a319c..bae843a 100644 --- a/README.md +++ b/README.md @@ -2,3 +2,5 @@ Dylan's test repository Now with a 3rd line of code Blah + +Text on Line 6