-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from snohio/5-test-ci
5 test ci
- Loading branch information
Showing
16 changed files
with
3,402 additions
and
100 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: Run Basic Commands | ||
|
||
on: | ||
pull_request: | ||
|
||
jobs: | ||
run-commands: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
- run: npm install --dev | ||
- run: npm test | ||
|
||
- run: npm install -g markdownlint-cli | ||
- run: markdownlint src --disable MD001 MD013 MD033 MD045 MD026 MD041 |
Oops, something went wrong.