fix: attempt to fix failing test

This commit is contained in:
EvolutionX
2022-04-24 10:55:00 +05:30
parent 097814cbc1
commit f8a5a34510
2 changed files with 48 additions and 43 deletions

View File

@@ -9,14 +9,14 @@
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: 'CodeQL'
name: "CodeQL"
on:
push:
branches: [main]
branches: [ main ]
pull_request:
# The branches below must be a subset of the branches above
branches: [main]
branches: [ main ]
schedule:
- cron: '40 13 * * 2'
@@ -32,7 +32,7 @@ jobs:
strategy:
fail-fast: false
matrix:
language: ['javascript']
language: [ 'javascript' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Learn more about CodeQL language support at https://git.io/codeql-language-support

5
.prettierrc Normal file
View File

@@ -0,0 +1,5 @@
{
"tabWidth": 4,
"useTabs": true,
"singleQuote": true
}