Skip to content

Commit 4b387be

Browse files
Merge branch 'master' into dependabot/github_actions/actions/checkout-3
2 parents 940e401 + 5dce223 commit 4b387be

File tree

7 files changed

+110
-132
lines changed

7 files changed

+110
-132
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040

4141
# Initializes the CodeQL tools for scanning.
4242
- name: Initialize CodeQL
43-
uses: github/codeql-action/init@v1
43+
uses: github/codeql-action/init@v2
4444
with:
4545
languages: ${{ matrix.language }}
4646
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -51,7 +51,7 @@ jobs:
5151
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5252
# If this step fails, then you should remove it and run the build manually (see below)
5353
- name: Autobuild
54-
uses: github/codeql-action/autobuild@v1
54+
uses: github/codeql-action/autobuild@v2
5555

5656
# ℹ️ Command-line programs to run using the OS shell.
5757
# 📚 https://git.io/JvXDl
@@ -65,4 +65,4 @@ jobs:
6565
# make release
6666

6767
- name: Perform CodeQL Analysis
68-
uses: github/codeql-action/analyze@v1
68+
uses: github/codeql-action/analyze@v2

.github/workflows/deploy-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- name: Checkout
1111
uses: actions/checkout@v3
1212
- name: Setup Node.js
13-
uses: actions/setup-node@v2
13+
uses: actions/setup-node@v3
1414
with:
1515
node-version: '14.x'
1616
# Pre-check to validate that versions match between package.json
@@ -23,7 +23,7 @@ jobs:
2323
run: npm run docs
2424

2525
- name: Deploy docs
26-
uses: JamesIves/[email protected].4
26+
uses: JamesIves/github-pages-deploy-action@v4.4.1
2727
with:
2828
branch: gh-pages # The branch the action should deploy to.
2929
folder: docs # The folder the action should deploy.

.github/workflows/generate-javascript.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Checkout Javascript
2222
uses: actions/checkout@v3
2323
- name: Setup Node
24-
uses: actions/setup-node@v2
24+
uses: actions/setup-node@v3
2525
with:
2626
node-version: '16'
2727
- name: Checkout Gen

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
name: Node ${{ matrix.node }} validation
1616
steps:
1717
- uses: actions/checkout@v3
18-
- uses: actions/setup-node@v2
18+
- uses: actions/setup-node@v3
1919
with:
2020
node-version: ${{ matrix.node }}
2121
# Pre-check to validate that versions match between package.json

.mocharc.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
// Specify "require" for CommonJS
3+
"require": "ts-node/register",
4+
"extensions": ["ts"],
5+
"spec": [
6+
"src/**/*_test.ts"
7+
],
8+
"watch-files": [
9+
"src"
10+
]
11+
}

0 commit comments

Comments
 (0)