Skip to content

Commit

Permalink
Resolve package-lock conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
dontcallmedom committed Sep 4, 2023
1 parent ae045b0 commit 4ee261f
Show file tree
Hide file tree
Showing 12 changed files with 798 additions and 655 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/file-issue-for-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
with:
node-version: 18
- name: Checkout validate-repos
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Install dependencies
run: npm ci
- name: Configure git
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: 16.x
node-version: 18.x
- name: Setup dependencies
run: npm ci
- name: Run lint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/submit-issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
with:
node-version: 18
- name: Checkout validate-repos
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Install dependencies
run: npm ci
- name: Configure git
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: 16.x
node-version: 18.x
- name: Setup dependencies
run: |
echo '{}' > config.json
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ jobs:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: 16.x
node-version: 18.x
- name: Setup dependencies
run: |
echo '{"ghToken":"${{ secrets.W3C_GH_TOKEN }}"}' > config.json
Expand Down
1 change: 0 additions & 1 deletion lib/w3cData.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

"use strict";

const fetch = require("node-fetch");
const w3c = require("node-w3capi");

const orgToOwner = {
Expand Down
Loading

0 comments on commit 4ee261f

Please sign in to comment.