Compare commits

..

1 Commits

Author SHA1 Message Date
Mo
8b6cfed6fa chore: autogenerated codeql file 2022-06-28 07:22:30 -05:00
970 changed files with 2707 additions and 116621 deletions

View File

@@ -16,12 +16,9 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v3
- uses: actions/setup-node@v1
with:
registry-url: 'https://registry.npmjs.org'
node-version-file: '.nvmrc'
- run: yarn build
node-version: '16.x'
- run: yarn lint:api-gateway
publish-aws-ecr:
@@ -32,7 +29,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Build locally
run: yarn build
run: yarn build:api-gateway
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
@@ -62,7 +59,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Build locally
run: yarn build
run: yarn build:api-gateway
- name: Login to Docker Hub
uses: docker/login-action@v2
with:

View File

@@ -16,12 +16,9 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v3
- uses: actions/setup-node@v1
with:
registry-url: 'https://registry.npmjs.org'
node-version-file: '.nvmrc'
- run: yarn build
node-version: '16.x'
- run: yarn lint:auth
- run: yarn test:auth
@@ -33,7 +30,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Build locally
run: yarn build
run: yarn build:auth
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
@@ -63,7 +60,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Build locally
run: yarn build
run: yarn build:auth
- name: Login to Docker Hub
uses: docker/login-action@v2
with:

72
.github/workflows/codeql-analysis.yml vendored Normal file
View File

@@ -0,0 +1,72 @@
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"
on:
push:
branches: [ "main" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "main" ]
schedule:
- cron: '44 8 * * 2'
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'javascript' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
steps:
- name: Checkout repository
uses: actions/checkout@v3
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# 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
# queries: security-extended,security-and-quality
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v2
# Command-line programs to run using the OS shell.
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
# If the Autobuild fails above, remove it and uncomment the following three lines.
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
# - run: |
# echo "Run, Build Application using script"
# ./location_of_script_within_repo/buildscript.sh
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2

View File

@@ -16,12 +16,9 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v3
- uses: actions/setup-node@v1
with:
registry-url: 'https://registry.npmjs.org'
node-version-file: '.nvmrc'
- run: yarn build
node-version: '16.x'
- run: yarn lint:files
- run: yarn test:files
@@ -33,7 +30,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Build locally
run: yarn build
run: yarn build:files
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
@@ -63,7 +60,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Build locally
run: yarn build
run: yarn build:files
- name: Login to Docker Hub
uses: docker/login-action@v2
with:

View File

@@ -11,6 +11,8 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install dependencies
run: yarn install --immutable
- name: ESLint
run: yarn lint
- name: Build

View File

@@ -16,12 +16,9 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v3
- uses: actions/setup-node@v1
with:
registry-url: 'https://registry.npmjs.org'
node-version-file: '.nvmrc'
- run: yarn build
node-version: '16.x'
- run: yarn lint:scheduler
- run: yarn test:scheduler
@@ -33,7 +30,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Build locally
run: yarn build
run: yarn build:scheduler
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
@@ -63,7 +60,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Build locally
run: yarn build
run: yarn build:scheduler
- name: Login to Docker Hub
uses: docker/login-action@v2
with:

View File

@@ -16,12 +16,10 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v3
- uses: actions/setup-node@v1
with:
registry-url: 'https://registry.npmjs.org'
node-version-file: '.nvmrc'
- run: yarn build
node-version: '16.x'
- run: yarn install --immutable
- run: yarn lint:syncing-server
- run: yarn test:syncing-server
@@ -33,7 +31,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Build locally
run: yarn build
run: yarn build:syncing-server
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
@@ -63,7 +61,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Build locally
run: yarn build
run: yarn build:syncing-server
- name: Login to Docker Hub
uses: docker/login-action@v2
with:

View File

@@ -1,11 +1,11 @@
name: Publish Packages
name: Version Bump
on:
push:
branches: [ main ]
jobs:
release_and_publish:
bump:
if: contains(github.event.head_commit.message, 'chore(release)') == false
runs-on: ubuntu-latest
steps:
@@ -28,20 +28,12 @@ jobs:
git_user_signingkey: true
git_commit_gpgsign: true
- name: Set up Node
uses: actions/setup-node@v3
- uses: actions/setup-node@v1
with:
registry-url: 'https://registry.npmjs.org'
node-version-file: '.nvmrc'
node-version: '16.x'
- name: Build packages
run: yarn build
- name: Bump version
run: yarn release
- name: Publish
run: yarn publish
env:
NODE_AUTH_TOKEN: ${{ secrets.CI_NPM_TOKEN }}
- name: Install locally
run: yarn install --immutable
- name: Bump Version
run: yarn release:prod

1
.gitignore vendored
View File

@@ -1,6 +1,7 @@
.eslintcache
.DS_Store
.idea
node_modules
dist
coverage
.env

3999
.pnp.cjs generated

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More