Skip to content
This repository was archived by the owner on May 19, 2023. It is now read-only.

Commit c0f385b

Browse files
committed
Merge branch 'master' of https://github.com/aidenybai/lucia
2 parents 9b5e019 + 714d57d commit c0f385b

File tree

3 files changed

+145
-72
lines changed

3 files changed

+145
-72
lines changed

.github/workflows/codeql.yml

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
name: "Code Scanning - Action"
2+
3+
on:
4+
push:
5+
pull_request:
6+
schedule:
7+
# ┌───────────── minute (0 - 59)
8+
# │ ┌───────────── hour (0 - 23)
9+
# │ │ ┌───────────── day of the month (1 - 31)
10+
# │ │ │ ┌───────────── month (1 - 12 or JAN-DEC)
11+
# │ │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT)
12+
# │ │ │ │ │
13+
# │ │ │ │ │
14+
# │ │ │ │ │
15+
# * * * * *
16+
- cron: '30 1 * * 0'
17+
18+
jobs:
19+
CodeQL-Build:
20+
# CodeQL runs on ubuntu-latest, windows-latest, and macos-latest
21+
runs-on: ubuntu-latest
22+
23+
steps:
24+
- name: Checkout repository
25+
uses: actions/checkout@v2
26+
27+
# Initializes the CodeQL tools for scanning.
28+
- name: Initialize CodeQL
29+
uses: github/codeql-action/init@v1
30+
# Override language selection by uncommenting this and choosing your languages
31+
# with:
32+
# languages: go, javascript, csharp, python, cpp, java
33+
34+
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
35+
# If this step fails, then you should remove it and run the build manually (see below).
36+
- name: Autobuild
37+
uses: github/codeql-action/autobuild@v1
38+
39+
# ℹ️ Command-line programs to run using the OS shell.
40+
# 📚 https://git.io/JvXDl
41+
42+
# ✏️ If the Autobuild fails above, remove it and uncomment the following
43+
# three lines and modify them (or add more) to build your code if your
44+
# project uses a compiled language
45+
46+
#- run: |
47+
# make bootstrap
48+
# make release
49+
50+
- name: Perform CodeQL Analysis
51+
uses: github/codeql-action/analyze@v1

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
"@commitlint/config-conventional": "^12.1.1",
5656
"@rollup/plugin-babel": "^5.2.2",
5757
"@rollup/plugin-beep": "^0.2.0",
58-
"@rollup/plugin-commonjs": "18.0.0",
58+
"@rollup/plugin-commonjs": "19.0.0",
5959
"@rollup/plugin-node-resolve": "11.2.0",
6060
"@rollup/plugin-strip": "^2.0.0",
6161
"@testing-library/dom": "^7.28.1",
@@ -70,7 +70,7 @@
7070
"eslint-config-prettier": "^8.1.0",
7171
"husky": "^6.0.0",
7272
"jest": "^26.6.1",
73-
"lint-staged": "^10.5.4",
73+
"lint-staged": "^11.0.0",
7474
"prettier": "^2.1.2",
7575
"rollup": "2.45.1",
7676
"rollup-plugin-filesize": "^9.1.1",

0 commit comments

Comments
 (0)