- Git
- Node v 10+
- NPM (but should be packaged with Node regardless)
- Terminal so we can run commands from it
- VScode with vetur plugin is recommended
- Some Basic Vue Experience
- Yarn is optional
- Knowing Jest a plus, but we'll go through basics if needed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
ARRAY=( | |
"org:repo" | |
"org:repo" | |
"org:repo" | |
) | |
touch combined.txt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
yarn run v1.12.3 | |
$ cross-env LOG_LEVEL=debug PERCY_TOKEN=9afc0b52ca8fa5de5abb46105d63ebac2ff6899b67d55e60c29907fb0b743d00 percy exec -- yarn e2e:ci --spec e2e/spec/logged-out.spec.ts | |
[[35mpercy[39m] created build #131: [34mhttps://percy.io/Attest/maker-fe/builds/1322927[39m | |
[[35mpercy[39m] -> assetDiscoveryService.puppeteer.launch durationMs=99 | |
[[35mpercy[39m] -> assetDiscoveryService.browser.newPage durationMs=50 | |
[[35mpercy[39m] percy has started. | |
$ cross-env NODE_PATH=e2e CYPRESS_MODE=ci node e2e/runner.js --spec e2e/spec/logged-out.spec.ts | |
{"time":"2019-01-14T17:35:12.828Z","trace_id":"7b77fc9a62f82599","span_id":"7b77fc9a62f82599","parent_id":"7b77fc9a62f82599","level":"INFO","message":"INFO: Server started on port: 8082"} | |
==================================================================================================== |
OS / Software requirements
- VS Code
- Latest version of Chrome / Safari
- Live Server VS Code extension
- aXe extension for Chrome
- GitHub account with Git
- Clone or download this repo from GitHub, https://github.com/chrisdemars/presentations
Any additional equipment other than Laptop or charger
- Earbuds/headphones (a basic set are supplied)
- Create an account with https://codesandbox.io/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: My workflow | |
on: [pull_request] | |
jobs: | |
tests: | |
name: Cypress run | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: My workflow | |
on: [pull_request] | |
jobs: | |
build_id: | |
steps: | |
- name: 'Set build id' | |
id: build_id | |
# add a step output `steps.build_id.outputs.id` as the unique id |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: My workflow | |
on: [pull_request] | |
jobs: | |
build_id: | |
steps: | |
- name: 'Set build id' | |
id: build_id | |
# add a step output `steps.build_id.outputs.id` as the unique id |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: My workflow | |
on: [pull_request] | |
jobs: | |
build_id: | |
steps: | |
- name: 'Set build id' | |
id: build_id | |
# add a step output `steps.build_id.outputs.id` as the unique id |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: My workflow | |
on: [pull_request] | |
jobs: | |
build_id: | |
steps: | |
- name: 'Set build id' | |
id: build_id | |
# add a step output `steps.build_id.outputs.id` as the unique id |
OlderNewer