Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(Types): include @discordjs/voice typings #5941

Merged
merged 4 commits into from
Jun 29, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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