Skip to content

Commit 55eb02c

Browse files
committed
Merge branch 'main' into daverlo/python
2 parents 4ce302b + 1a91a07 commit 55eb02c

89 files changed

Lines changed: 746 additions & 202 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.eslintrc.json

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,14 @@
2222
"import/no-namespace": "off",
2323
"import/no-unresolved": "error",
2424
"import/no-webpack-loader-syntax": "error",
25+
"import/order": ["error", {
26+
"alphabetize": {"order": "asc"},
27+
"newlines-between": "always"
28+
}],
2529
"no-async-foreach/no-async-foreach": "error",
2630
"no-console": "off",
2731
"no-sequences": "error",
28-
"one-var": ["error", "never"],
29-
"sort-imports": ["error", { "allowSeparatedGroups": true }]
32+
"one-var": ["error", "never"]
3033
},
3134
"overrides": [{
3235
// "temporarily downgraded during transition to eslint
@@ -44,15 +47,10 @@
4447
"@typescript-eslint/prefer-regexp-exec": "off",
4548
"@typescript-eslint/require-await": "off",
4649
"@typescript-eslint/restrict-template-expressions": "off",
47-
"eslint-comments/no-use": "off",
4850
"func-style": "off",
4951
"github/no-then": "off",
5052
"import/no-extraneous-dependencies": "off",
51-
"no-shadow": "off",
52-
"no-sparse-arrays": "off",
53-
"no-throw-literal": "off",
54-
"no-useless-escape": "off",
55-
"sort-imports": "off"
53+
"no-shadow": "off"
5654
}
5755
}]
5856
}

.github/workflows/integration-testing.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ jobs:
4444
fail-fast: false
4545
matrix:
4646
os: [ubuntu-latest, windows-latest, macos-latest]
47+
tools: [~, latest]
4748
runs-on: ${{ matrix.os }}
4849

4950
steps:
@@ -56,6 +57,7 @@ jobs:
5657
mv ../action/tests/multi-language-repo/{*,.github} .
5758
- uses: ./../action/init
5859
with:
60+
tools: ${{ matrix.tools }}
5961
languages: cpp,csharp,java,javascript,python
6062
config-file: github/codeql-action/tests/multi-language-repo/.github/codeql/custom-queries.yml@${{ github.sha }}
6163
- name: Build code

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,15 @@ on:
2222
push:
2323
pull_request:
2424
schedule:
25+
# ┌───────────── minute (0 - 59)
26+
# │ ┌───────────── hour (0 - 23)
27+
# │ │ ┌───────────── day of the month (1 - 31)
28+
# │ │ │ ┌───────────── month (1 - 12 or JAN-DEC)
29+
# │ │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT)
30+
# │ │ │ │ │
31+
# │ │ │ │ │
32+
# │ │ │ │ │
33+
# * * * * *
2534
- cron: '0 0 * * 0'
2635

2736
jobs:

lib/actions-util.js

Lines changed: 11 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/actions-util.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/actions-util.test.js

Lines changed: 30 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)