You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
50
+
# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
51
+
# queries: security-extended,security-and-quality
52
+
53
+
54
+
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java).
54
55
# If this step fails, then you should remove it and run the build manually (see below)
55
56
- name: Autobuild
56
-
uses: github/codeql-action/autobuild@v1
57
+
uses: github/codeql-action/autobuild@v2
57
58
58
59
# ℹ️ Command-line programs to run using the OS shell.
59
-
# 📚 https://git.io/JvXDl
60
+
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
60
61
61
-
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
62
-
# and modify them (or add more) to build your code if your project
63
-
# uses a compiled language
62
+
# If the Autobuild fails above, remove it and uncomment the following three lines.
63
+
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node
1
+
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
2
2
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
3
3
4
4
name: Node.js CI
5
5
6
6
on:
7
7
push:
8
-
branches: [ master ]
8
+
branches: [ "master" ]
9
9
pull_request:
10
-
branches: [ master ]
10
+
branches: [ "master" ]
11
+
workflow_dispatch: {}
11
12
12
13
jobs:
13
14
build:
@@ -16,19 +17,18 @@ jobs:
16
17
17
18
strategy:
18
19
matrix:
19
-
node-version: [12.x, 14.x, 16.x]
20
20
os: [ubuntu-latest]
21
+
node-version: [12.x, 14.x, 16.x, 18.x]
21
22
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
0 commit comments