fix pull_request workflow
Signed-off-by: Nathan Rew <nrew225@gmail.com>
This commit is contained in:
parent
27071cb9c8
commit
becb838708
8
.github/workflows/pull_request.yml
vendored
8
.github/workflows/pull_request.yml
vendored
@ -2,7 +2,7 @@ name: Pull Request Checks
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches: [ main ]
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
check_syntax:
|
||||
@ -13,12 +13,14 @@ jobs:
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: '14.x'
|
||||
- name: create diff
|
||||
run: git diff origin/master -U0 README.md | grep --perl-regexp --only-matching "(?<=^\+).*" >> temp.md
|
||||
- name: Checks
|
||||
run: |
|
||||
cd test
|
||||
npm install chalk
|
||||
cd ..
|
||||
git diff origin/master -U0 README.md | grep --perl-regexp --only-matching "(?<=^\+).*" >> temp.md
|
||||
|
||||
script -e -c 'node tests/test.js -r README.md -d temp.md'
|
||||
|
||||
check_links:
|
||||
@ -29,6 +31,8 @@ jobs:
|
||||
uses: actions/setup-ruby@v1
|
||||
with:
|
||||
ruby-version: 2.6.x
|
||||
- name: create diff
|
||||
run: git diff origin/master -U0 README.md | grep --perl-regexp --only-matching "(?<=^\+).*" >> temp.md
|
||||
- name: Checks
|
||||
run: |
|
||||
gem install awesome_bot
|
||||
|
Loading…
Reference in New Issue
Block a user