diff --git a/1B388FC5-E2FC-4E15-A8A0-1528A5EB2674.png b/1B388FC5-E2FC-4E15-A8A0-1528A5EB2674.png new file mode 100644 index 00000000..a787f606 Binary files /dev/null and b/1B388FC5-E2FC-4E15-A8A0-1528A5EB2674.png differ diff --git a/34A164D7-D1FB-4D72-83BD-B88B809AA90C.png b/34A164D7-D1FB-4D72-83BD-B88B809AA90C.png new file mode 100644 index 00000000..5754ec26 Binary files /dev/null and b/34A164D7-D1FB-4D72-83BD-B88B809AA90C.png differ diff --git a/46A7527D-CC9B-43DA-8A7E-AE504A4E0D0B.png b/46A7527D-CC9B-43DA-8A7E-AE504A4E0D0B.png new file mode 100644 index 00000000..3e2b0794 Binary files /dev/null and b/46A7527D-CC9B-43DA-8A7E-AE504A4E0D0B.png differ diff --git a/4B61A0D0-FBE6-40E1-A1A4-3317B95CBFEA.png b/4B61A0D0-FBE6-40E1-A1A4-3317B95CBFEA.png new file mode 100644 index 00000000..33f7fa67 Binary files /dev/null and b/4B61A0D0-FBE6-40E1-A1A4-3317B95CBFEA.png differ diff --git a/4EECA863-6563-4F00-BE5A-58F5B01AF8F3.jpeg b/4EECA863-6563-4F00-BE5A-58F5B01AF8F3.jpeg new file mode 100644 index 00000000..dc36285f Binary files /dev/null and b/4EECA863-6563-4F00-BE5A-58F5B01AF8F3.jpeg differ diff --git a/57EFC1DB-AC5C-4CD3-941C-08CFE023016A.png b/57EFC1DB-AC5C-4CD3-941C-08CFE023016A.png new file mode 100644 index 00000000..51eaea05 Binary files /dev/null and b/57EFC1DB-AC5C-4CD3-941C-08CFE023016A.png differ diff --git a/5863EC93-C16C-44C3-8258-CACEB5D83B50.png b/5863EC93-C16C-44C3-8258-CACEB5D83B50.png new file mode 100644 index 00000000..af48d6d6 Binary files /dev/null and b/5863EC93-C16C-44C3-8258-CACEB5D83B50.png differ diff --git a/5E610505-88BA-417C-92F8-BB31ECE7F1DF.jpeg b/5E610505-88BA-417C-92F8-BB31ECE7F1DF.jpeg new file mode 100644 index 00000000..41333893 Binary files /dev/null and b/5E610505-88BA-417C-92F8-BB31ECE7F1DF.jpeg differ diff --git a/77738E7D-FF77-4024-A465-42126BA93ABC.jpeg b/77738E7D-FF77-4024-A465-42126BA93ABC.jpeg new file mode 100644 index 00000000..bd9cf556 Binary files /dev/null and b/77738E7D-FF77-4024-A465-42126BA93ABC.jpeg differ diff --git a/8A60940E-EDA7-4FDB-BCB4-FF5271E6E757.png b/8A60940E-EDA7-4FDB-BCB4-FF5271E6E757.png new file mode 100644 index 00000000..b6f5fac9 Binary files /dev/null and b/8A60940E-EDA7-4FDB-BCB4-FF5271E6E757.png differ diff --git a/IMG_0013.mp4 b/IMG_0013.mp4 new file mode 100644 index 00000000..9a590c40 Binary files /dev/null and b/IMG_0013.mp4 differ diff --git a/README.md b/README.md index aa243c2e..307f47e9 100644 --- a/README.md +++ b/README.md @@ -1,110 +1,115 @@ -# setup-node +# bookish-spork +I +Step 1. Create a Repository +A repository is usually used to organize a single project. Repositories can contain folders and files, images, videos, spreadsheets, and data sets – anything your project needs. We recommend including a README, or a file with information about your project. GitHub makes it easy to add one at the same time you create your new repository. It also offers other common options such as a license file. -
+Your hello-world repository can be a place where you store ideas, resources, or even share and discuss things with others. -This action provides the following functionality for GitHub Actions users: +To create a new repository +In the upper right corner, next to your avatar or identicon, click and then select New repository. +Name your repository hello-world. +Write a short description. +Select Initialize this repository with a README. +new-repo-form -- Optionally downloading and caching distribution of the requested Node.js version, and adding it to the PATH -- Optionally caching npm/yarn dependencies -- Registering problem matchers for error output -- Configuring authentication for GPR or npm +Click Create repository. -# Usage -See [action.yml](action.yml) +Step 2. Create a Branch +Branching is the way to work on different versions of a repository at one time. -**Basic:** -```yaml -steps: -- uses: actions/checkout@v2 -- uses: actions/setup-node@v2 - with: - node-version: '14' -- run: npm install -- run: npm test -``` +By default your repository has one branch named main which is considered to be the definitive branch. We use branches to experiment and make edits before committing them to main. -The `node-version` input is optional. If not supplied, the node version from PATH will be used. However, it is recommended to always specify Node.js version and don't rely on the system one. +When you create a branch off the main branch, you’re making a copy, or snapshot, of main as it was at that point in time. If someone else made changes to the main branch while you were working on your branch, you could pull in those updates. -The action will first check the local cache for a semver match. If unable to find a specific version in the cache, the action will attempt to download a version of Node.js. It will pull LTS versions from [node-versions releases](https://github.com/actions/node-versions/releases) and on miss or failure will fall back to the previous behavior of downloading directly from [node dist](https://nodejs.org/dist/). +This diagram shows: -For information regarding locally cached versions of Node.js on GitHub hosted runners, check out [GitHub Actions Virtual Environments](https://github.com/actions/virtual-environments). +The main branch +A new branch called feature (because we’re doing ‘feature work’ on this branch) +The journey that feature takes before it’s merged into main +a branch -#### Supported version syntax -The `node-version` input supports the following syntax: +Have you ever saved different versions of a file? Something like: -major versions: `12`, `14`, `16` -more specific versions: `10.15`, `14.2.0`, `16.3.0` -nvm lts syntax: `lts/erbium`, `lts/fermium`, `lts/*` +story.txt +story-joe-edit.txt +story-joe-edit-reviewed.txt +Branches accomplish similar goals in GitHub repositories. -### Caching packages dependencies +Here at GitHub, our developers, writers, and designers use branches for keeping bug fixes and feature work separate from our main (production) branch. When a change is ready, they merge their branch into main. -The action has a built-in functionality for caching and restoring npm/yarn dependencies. Supported package managers are `npm`, `yarn`. The `cache` input is optional, and caching is turned off by default. +To create a new branch +Go to your new repository hello-world. +Click the drop down at the top of the file list that says branch: main. +Type a branch name, readme-edits, into the new branch text box. +Select the blue Create branch box or hit “Enter” on your keyboard. +branch gif -**Caching npm dependencies:** -```yaml -steps: -- uses: actions/checkout@v2 -- uses: actions/setup-node@v2 - with: - node-version: '14' - cache: 'npm' -- run: npm install -- run: npm test -``` +Now you have two branches, main and readme-edits. They look exactly the same, but not for long! Next we’ll add our changes to the new branch. -**Caching yarn dependencies:** -```yaml -steps: -- uses: actions/checkout@v2 -- uses: actions/setup-node@v2 - with: - node-version: '14' - cache: 'yarn' -- run: yarn install -- run: yarn test -``` -Yarn caching handles both yarn versions: 1 or 2. -> At the moment, only `lock` files in the project root are supported. +Step 3. Make and commit changes +Bravo! Now, you’re on the code view for your readme-edits branch, which is a copy of main. Let’s make some edits. -### Matrix Testing: -```yaml -jobs: - build: - runs-on: ubuntu-latest - strategy: - matrix: - node: [ '12', '14', '16' ] - name: Node ${{ matrix.node }} sample - steps: - - uses: actions/checkout@v2 - - name: Setup node - uses: actions/setup-node@v2 - with: - node-version: ${{ matrix.node }} - - run: npm install - - run: npm test -``` -## Advanced usage +On GitHub, saved changes are called commits. Each commit has an associated commit message, which is a description explaining why a particular change was made. Commit messages capture the history of your changes, so other contributors can understand what you’ve done and why. -1. [Check latest version](docs/advanced-usage.md#check-latest-version) -2. [Using different architectures](docs/advanced-usage.md#architecture) -3. [Using multiple operating systems and architectures](docs/advanced-usage.md#multiple-operating-systems-and-architectures) -4. [Publishing to npmjs and GPR with npm](docs/advanced-usage.md#publish-to-npmjs-and-gpr-with-npm) -5. [Publishing to npmjs and GPR with yarn](docs/advanced-usage.md#publish-to-npmjs-and-gpr-with-yarn) -6. [Using private packages](docs/advanced-usage.md#use-private-packages) +Make and commit changes +Click the README.md file. +Click the pencil icon in the upper right corner of the file view to edit. +In the editor, write a bit about yourself. +Write a commit message that describes your changes. +Click Commit changes button. +commit -# License +These changes will be made to just the README file on your readme-edits branch, so now this branch contains content that’s different from main. -The scripts and documentation in this project are released under the [MIT License](LICENSE) -# Contributions +Step 4. Open a Pull Request +Nice edits! Now that you have changes in a branch off of main, you can open a pull request. -Contributions are welcome! See [Contributor's Guide](docs/contributors.md) +Pull Requests are the heart of collaboration on GitHub. When you open a pull request, you’re proposing your changes and requesting that someone review and pull in your contribution and merge them into their branch. Pull requests show diffs, or differences, of the content from both branches. The changes, additions, and subtractions are shown in green and red. -## Code of Conduct +As soon as you make a commit, you can open a pull request and start a discussion, even before the code is finished. -:wave: Be nice. See [our code of conduct](CONDUCT) +By using GitHub’s @mention system in your pull request message, you can ask for feedback from specific people or teams, whether they’re down the hall or 10 time zones away. + +You can even open pull requests in your own repository and merge them yourself. It’s a great way to learn the GitHub flow before working on larger projects. + +Open a Pull Request for changes to the README +Click on the image for a larger version + +Step Screenshot +Click the Pull Request tab, then from the Pull Request page, click the green New pull request button. pr-tab +In the Example Comparisons box, select the branch you made, readme-edits, to compare with main (the original). branch +Look over your changes in the diffs on the Compare page, make sure they’re what you want to submit. diff +When you’re satisfied that these are the changes you want to submit, click the big green Create Pull Request button. create-pull +Give your pull request a title and write a brief description of your changes. pr-form +When you’re done with your message, click Create pull request! + +Tip: You can use emoji and drag and drop images and gifs onto comments and Pull Requests. + + +Step 5. Merge your Pull Request +In this final step, it’s time to bring your changes together – merging your readme-edits branch into the main branch. + +Click the green Merge pull request button to merge the changes into main. +Click Confirm merge. +Go ahead and delete the branch, since its changes have been incorporated, with the Delete branch button in the purple box. +merge delete + +Celebrate! +By completing this tutorial, you’ve learned to create a project and make a pull request on GitHub! + +Here’s what you accomplished in this tutorial: + +Created an open source repository +Started and managed a new branch +Changed a file and committed those changes to GitHub +Opened and merged a Pull Request +Take a look at your GitHub profile and you’ll see your new contribution squares! + +To learn more about the power of Pull Requests, we recommend reading the GitHub flow Guide. You might also visit GitHub Explore and get involved in an Open Source project. + +Tip: Check out our other Guides, YouTube Channel and On-Demand Training for more on how to get started with GitHub. + +Last updated July 24, 2020 diff --git a/Safari - Jul 9, 2021 at 11:07 PM.pdf b/Safari - Jul 9, 2021 at 11:07 PM.pdf new file mode 100644 index 00000000..07c7ad83 Binary files /dev/null and b/Safari - Jul 9, 2021 at 11:07 PM.pdf differ diff --git a/bookmarks.csv b/bookmarks.csv new file mode 100644 index 00000000..f3819ce4 --- /dev/null +++ b/bookmarks.csv @@ -0,0 +1 @@ +post_id,topic_id,post_number,link,name,created_at,updated_at,reminder_type,reminder_at,reminder_last_sent_at,reminder_set_at,auto_delete_preference diff --git a/category_preferences.csv b/category_preferences.csv new file mode 100644 index 00000000..d44a3b65 --- /dev/null +++ b/category_preferences.csv @@ -0,0 +1 @@ +category_id,category_names,notification_level,dismiss_new_timestamp diff --git a/markdown-cheatsheet-online.pdf b/markdown-cheatsheet-online.pdf new file mode 100644 index 00000000..b201cee5 --- /dev/null +++ b/markdown-cheatsheet-online.pdf @@ -0,0 +1,8895 @@ +%PDF-1.4 % +376 0 obj <> endobj xref 376 454 0000000016 00000 n +0000009959 00000 n +0000010025 00000 n +0000013029 00000 n +0000013155 00000 n +0000013279 00000 n +0000013405 00000 n +0000013519 00000 n +0000013645 00000 n +0000013771 00000 n +0000013895 00000 n +0000014017 00000 n +0000014143 00000 n +0000014269 00000 n +0000014395 00000 n +0000014519 00000 n +0000014645 00000 n +0000014769 00000 n +0000014895 00000 n +0000015019 00000 n +0000015457 00000 n +0000015822 00000 n +0000015910 00000 n +0000016515 00000 n +0000016603 00000 n +0000016935 00000 n +0000017189 00000 n +0000017711 00000 n +0000018252 00000 n +0000018559 00000 n +0000019339 00000 n +0000020359 00000 n +0000021323 00000 n +0000022240 00000 n +0000022354 00000 n +0000022731 00000 n +0000022816 00000 n +0000023155 00000 n +0000024084 00000 n +0000024905 00000 n +0000029128 00000 n +0000030795 00000 n +0000032732 00000 n +0000052739 00000 n +0000052803 00000 n +0000053135 00000 n +0000053199 00000 n +0000053530 00000 n +0000053594 00000 n +0000053928 00000 n +0000053992 00000 n +0000054325 00000 n +0000054389 00000 n +0000054722 00000 n +0000054786 00000 n +0000055116 00000 n +0000055180 00000 n +0000055510 00000 n +0000055574 00000 n +0000055907 00000 n +0000055971 00000 n +0000056304 00000 n +0000056368 00000 n +0000056697 00000 n +0000056761 00000 n +0000057090 00000 n +0000057154 00000 n +0000057484 00000 n +0000057548 00000 n +0000057878 00000 n +0000057942 00000 n +0000058275 00000 n +0000058339 00000 n +0000058669 00000 n +0000058733 00000 n +0000059062 00000 n +0000059126 00000 n +0000059455 00000 n +0000059519 00000 n +0000059847 00000 n +0000059911 00000 n +0000060240 00000 n +0000060304 00000 n +0000060633 00000 n +0000060697 00000 n +0000061029 00000 n +0000061093 00000 n +0000061425 00000 n +0000061489 00000 n +0000061821 00000 n +0000061885 00000 n +0000062217 00000 n +0000062281 00000 n +0000062613 00000 n +0000062677 00000 n +0000063009 00000 n +0000063073 00000 n +0000063405 00000 n +0000063469 00000 n +0000063798 00000 n +0000063862 00000 n +0000064192 00000 n +0000064256 00000 n +0000064586 00000 n +0000064650 00000 n +0000064979 00000 n +0000065043 00000 n +0000065375 00000 n +0000065439 00000 n +0000065769 00000 n +0000065833 00000 n +0000066165 00000 n +0000066229 00000 n +0000066561 00000 n +0000066625 00000 n +0000066957 00000 n +0000067021 00000 n +0000067352 00000 n +0000067416 00000 n +0000067749 00000 n +0000067813 00000 n +0000068144 00000 n +0000068208 00000 n +0000068541 00000 n +0000068605 00000 n +0000068935 00000 n +0000068999 00000 n +0000069331 00000 n +0000069395 00000 n +0000069725 00000 n +0000069789 00000 n +0000070121 00000 n +0000070185 00000 n +0000070515 00000 n +0000070579 00000 n +0000070908 00000 n +0000070972 00000 n +0000071303 00000 n +0000071367 00000 n +0000071699 00000 n +0000071763 00000 n +0000072095 00000 n +0000072159 00000 n +0000072489 00000 n +0000072553 00000 n +0000072886 00000 n +0000072950 00000 n +0000073280 00000 n +0000073344 00000 n +0000073677 00000 n +0000073741 00000 n +0000074072 00000 n +0000074136 00000 n +0000074467 00000 n +0000074531 00000 n +0000074863 00000 n +0000074927 00000 n +0000075260 00000 n +0000075324 00000 n +0000075655 00000 n +0000075719 00000 n +0000076049 00000 n +0000076113 00000 n +0000076445 00000 n +0000076509 00000 n +0000076839 00000 n +0000076903 00000 n +0000077232 00000 n +0000077296 00000 n +0000077626 00000 n +0000077690 00000 n +0000078023 00000 n +0000078087 00000 n +0000078419 00000 n +0000078483 00000 n +0000078813 00000 n +0000078877 00000 n +0000079207 00000 n +0000079271 00000 n +0000079603 00000 n +0000079667 00000 n +0000080000 00000 n +0000080064 00000 n +0000080396 00000 n +0000080460 00000 n +0000080790 00000 n +0000080854 00000 n +0000081184 00000 n +0000081248 00000 n +0000081578 00000 n +0000081642 00000 n +0000081971 00000 n +0000082035 00000 n +0000082498 00000 n +0000082562 00000 n +0000082891 00000 n +0000082955 00000 n +0000083283 00000 n +0000083347 00000 n +0000083676 00000 n +0000083740 00000 n +0000084073 00000 n +0000084137 00000 n +0000084469 00000 n +0000084533 00000 n +0000084862 00000 n +0000084926 00000 n +0000085259 00000 n +0000085323 00000 n +0000085652 00000 n +0000085716 00000 n +0000086050 00000 n +0000086114 00000 n +0000086447 00000 n +0000086511 00000 n +0000086842 00000 n +0000086906 00000 n +0000087239 00000 n +0000087303 00000 n +0000087635 00000 n +0000087699 00000 n +0000088031 00000 n +0000088095 00000 n +0000088428 00000 n +0000088492 00000 n +0000088824 00000 n +0000088888 00000 n +0000089220 00000 n +0000089284 00000 n +0000089615 00000 n +0000089679 00000 n +0000090012 00000 n +0000090076 00000 n +0000090408 00000 n +0000090472 00000 n +0000090802 00000 n +0000090866 00000 n +0000091196 00000 n +0000091260 00000 n +0000091594 00000 n +0000091658 00000 n +0000091992 00000 n +0000092056 00000 n +0000092387 00000 n +0000092451 00000 n +0000092785 00000 n +0000092849 00000 n +0000093181 00000 n +0000093245 00000 n +0000093578 00000 n +0000093642 00000 n +0000093975 00000 n +0000094039 00000 n +0000094372 00000 n +0000094436 00000 n +0000094769 00000 n +0000094833 00000 n +0000095166 00000 n +0000095230 00000 n +0000095561 00000 n +0000095625 00000 n +0000095957 00000 n +0000096021 00000 n +0000096355 00000 n +0000096419 00000 n +0000096750 00000 n +0000096814 00000 n +0000097145 00000 n +0000097209 00000 n +0000097540 00000 n +0000097604 00000 n +0000097936 00000 n +0000098000 00000 n +0000098333 00000 n +0000098397 00000 n +0000098729 00000 n +0000098793 00000 n +0000099125 00000 n +0000099189 00000 n +0000099523 00000 n +0000099587 00000 n +0000099918 00000 n +0000099982 00000 n +0000100316 00000 n +0000100380 00000 n +0000100712 00000 n +0000100776 00000 n +0000101108 00000 n +0000101172 00000 n +0000101504 00000 n +0000101568 00000 n +0000101900 00000 n +0000101964 00000 n +0000102293 00000 n +0000102357 00000 n +0000102687 00000 n +0000102751 00000 n +0000103079 00000 n +0000103143 00000 n +0000103472 00000 n +0000103536 00000 n +0000103865 00000 n +0000103929 00000 n +0000104263 00000 n +0000104327 00000 n +0000104657 00000 n +0000104721 00000 n +0000105052 00000 n +0000105116 00000 n +0000105447 00000 n +0000105511 00000 n +0000105843 00000 n +0000105907 00000 n +0000106239 00000 n +0000106303 00000 n +0000106635 00000 n +0000106699 00000 n +0000107031 00000 n +0000107095 00000 n +0000107425 00000 n +0000107489 00000 n +0000107819 00000 n +0000107883 00000 n +0000108212 00000 n +0000108276 00000 n +0000108610 00000 n +0000108674 00000 n +0000109005 00000 n +0000109069 00000 n +0000109401 00000 n +0000109465 00000 n +0000109794 00000 n +0000109858 00000 n +0000110190 00000 n +0000110254 00000 n +0000110586 00000 n +0000110650 00000 n +0000110982 00000 n +0000111046 00000 n +0000111378 00000 n +0000111442 00000 n +0000111775 00000 n +0000111839 00000 n +0000112172 00000 n +0000112236 00000 n +0000112565 00000 n +0000112629 00000 n +0000112962 00000 n +0000113026 00000 n +0000113359 00000 n +0000113423 00000 n +0000113752 00000 n +0000113816 00000 n +0000114148 00000 n +0000114212 00000 n +0000114540 00000 n +0000114604 00000 n +0000114935 00000 n +0000114999 00000 n +0000115332 00000 n +0000115396 00000 n +0000115728 00000 n +0000115792 00000 n +0000116122 00000 n +0000116186 00000 n +0000116518 00000 n +0000116582 00000 n +0000116912 00000 n +0000116976 00000 n +0000117309 00000 n +0000117373 00000 n +0000117704 00000 n +0000117768 00000 n +0000118102 00000 n +0000118166 00000 n +0000118498 00000 n +0000118562 00000 n +0000118895 00000 n +0000118959 00000 n +0000119291 00000 n +0000119355 00000 n +0000119684 00000 n +0000119748 00000 n +0000120080 00000 n +0000120144 00000 n +0000120473 00000 n +0000120537 00000 n +0000120868 00000 n +0000120932 00000 n +0000121261 00000 n +0000121328 00000 n +0000121404 00000 n +0000123125 00000 n +0000123915 00000 n +0000128312 00000 n +0000157795 00000 n +0000188758 00000 n +0000252236 00000 n +0000294048 00000 n +0000341278 00000 n +0000399602 00000 n +0000441281 00000 n +0000504940 00000 n +0000546858 00000 n +0000588547 00000 n +0000607918 00000 n +0000611697 00000 n +0000619701 00000 n +0000640359 00000 n +0000646950 00000 n +0000687169 00000 n +0000740013 00000 n +0000775035 00000 n +0000824318 00000 n +0000870339 00000 n +0000909578 00000 n +0000933131 00000 n +0000982700 00000 n +0001024229 00000 n +0001067047 00000 n +0001117201 00000 n +0001147896 00000 n +0001159869 00000 n +0001180879 00000 n +0001205736 00000 n +0001231195 00000 n +0001253453 00000 n +0001277778 00000 n +0001302874 00000 n +0001327545 00000 n +0001346715 00000 n +0001355965 00000 n +0001366130 00000 n +0001374474 00000 n +0001384306 00000 n +0001395260 00000 n +0001406534 00000 n +0001420905 00000 n +0001450178 00000 n +0001457167 00000 n +0001468721 00000 n +0001476859 00000 n +0001510696 00000 n +0001523332 00000 n +0001553113 00000 n +0001564683 00000 n +0001594976 00000 n +0001605317 00000 n +0001620026 00000 n +0001649312 00000 n +0001654117 00000 n +0001683194 00000 n +0001712434 00000 n +0000009376 00000 n +trailer <