Skip to content

Commit

Permalink
Merge pull request #118 from notificationapi-com/6XazgM0l/2450-docs-p…
Browse files Browse the repository at this point in the history
…ipeline-cleanup

Update
  • Loading branch information
sahandseifi authored Oct 5, 2024
2 parents 690a82a + 0e04453 commit b4aacd5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18.x'
node-version: '20.x'

- name: Test Build
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pullRequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ jobs:
pull_request_test:
name: pull_request_test
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'skip ci')"
if: ${{ !contains(github.event.pull_request.title, 'skip ci') }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 18
node-version: '20.x'

- name: NPM Install
run: npm install --force
Expand Down
4 changes: 1 addition & 3 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,7 @@ module.exports = {
},
],
],
customFields: {
trailingSlash: false,
},
trailingSlash: false,
scripts: [
"/custom.js"
],
Expand Down

0 comments on commit b4aacd5

Please sign in to comment.