Bump dependencies #428
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
name: Lint | |
on: | |
push: | |
pull_request_target: | |
workflow_dispatch: | |
permissions: write-all | |
jobs: | |
format: | |
name: Format | |
runs-on: ubuntu-20.04 | |
concurrency: format-${{github.ref}} | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
ref: ${{github.head_ref}} | |
repository: ${{github.event.pull_request.head.repo.full_name}} | |
- name: Setup Node.JS | |
uses: actions/[email protected] | |
with: | |
node-version: 18.11.0 | |
cache: npm | |
- name: Install | |
run: npm ci | |
- name: Format | |
run: npm run format | |
- name: Assert clean | |
if: startsWith(github.ref_name, 'dependabot/') == true | |
run: if [[ `git status --porcelain` ]]; then exit 1; fi | |
- name: Commit | |
uses: stefanzweifel/[email protected] | |
with: | |
commit_message: Format | |
analyze: | |
name: Analyze | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
ref: ${{github.head_ref}} | |
repository: ${{github.event.pull_request.head.repo.full_name}} | |
- name: Setup CodeQL | |
uses: github/codeql-action/[email protected] | |
with: | |
languages: javascript | |
queries: security-and-quality | |
- name: Analyze | |
uses: github/codeql-action/[email protected] | |
build: | |
name: Build | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
version: ["14.9", "14.10", "14.11", "14.12", "14.13", "14.14", "14.15", "14.16"] | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
ref: ${{github.head_ref}} | |
repository: ${{github.event.pull_request.head.repo.full_name}} | |
- name: Setup Node.JS | |
uses: actions/[email protected] | |
with: | |
node-version: 18.11.0 | |
cache: npm | |
- name: Update discord.js | |
run: npm pkg set "devDependencies[discord.js]"=${{matrix.version}} | |
- name: Sync discord.js dependencies | |
run: | | |
new_overrides=$(curl -s "https://cdn.jsdelivr.net/npm/discord.js@${{matrix.version}}/package.json" | jq -c '.dependencies | with_entries(.value |= gsub("\\^|>"; "~"))') | |
new_package=$(jq --tab --argjson newData "$new_overrides" '.overrides = $newData' package.json) | |
echo "$new_package" > package.json | |
- name: Pin discord-api-types | |
run: | | |
discord_api_types=$(npm pkg get overrides.discord-api-types | sed "s/~//g") | |
npm pkg set overrides.discord-api-types="$discord_api_types" --json | |
- name: Install | |
run: npm install | |
- name: Build | |
run: npm run build |