Skip to content

Commit

Permalink
chore(Types): include @discordjs/voice typings (#5941)
Browse files Browse the repository at this point in the history
Co-authored-by: Noel <buechler.noel@outlook.com>
  • Loading branch information
amishshah and iCrawl committed Jun 29, 2021
1 parent 5ad83a6 commit 63a8df1
Show file tree
Hide file tree
Showing 8 changed files with 1,228 additions and 1,241 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ jobs:
node-version: 14

- name: Install dependencies
run: npm ci
# Remove --no-optional after Node 16 upgrade
run: npm ci --no-optional

- name: Build and deploy documentation
uses: discordjs/action-docs@v1
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/publish-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ jobs:
registry-url: https://registry.npmjs.org/

- name: Install dependencies
run: npm ci --ignore-scripts
# Remove --no-optional after Node 16 upgrade
run: npm ci --ignore-scripts --no-optional

- name: Publish
run: |
Expand Down
12 changes: 8 additions & 4 deletions .github/workflows/test-cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ jobs:
node-version: 14

- name: Install dependencies
run: npm ci
# Remove --no-optional after Node 16 upgrade
run: npm ci --no-optional

- name: Run ESLint
run: npm run lint
Expand All @@ -34,7 +35,8 @@ jobs:
node-version: 14

- name: Install dependencies
run: npm ci
# Remove --no-optional after Node 16 upgrade
run: npm ci --no-optional

- name: Run TSLint
run: npm run lint:typings
Expand All @@ -52,7 +54,8 @@ jobs:
node-version: 14

- name: Install dependencies
run: npm ci
# Remove --no-optional after Node 16 upgrade
run: npm ci --no-optional

- name: Register Problem Matcher
run: echo "##[add-matcher].github/tsc.json"
Expand All @@ -73,7 +76,8 @@ jobs:
node-version: 14

- name: Install dependencies
run: npm ci
# Remove --no-optional after Node 16 upgrade
run: npm ci --no-optional

- name: Test documentation
run: npm run docs:test
12 changes: 8 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ jobs:
node-version: 14

- name: Install dependencies
run: npm ci
# Remove --no-optional after Node 16 upgrade
run: npm ci --no-optional

- name: Run ESLint
run: npm run lint
Expand All @@ -32,7 +33,8 @@ jobs:
node-version: 14

- name: Install dependencies
run: npm ci
# Remove --no-optional after Node 16 upgrade
run: npm ci --no-optional

- name: Run TSLint
run: npm run lint:typings
Expand All @@ -50,7 +52,8 @@ jobs:
node-version: 14

- name: Install dependencies
run: npm ci
# Remove --no-optional after Node 16 upgrade
run: npm ci --no-optional

- name: Register Problem Matcher
run: echo "##[add-matcher].github/tsc.json"
Expand All @@ -71,7 +74,8 @@ jobs:
node-version: 14

- name: Install dependencies
run: npm ci
# Remove --no-optional after Node 16 upgrade
run: npm ci --no-optional

- name: Test documentation
run: npm run docs:test

0 comments on commit 63a8df1

Please sign in to comment.