Skip to content

Commit

Permalink
initial version
Browse files Browse the repository at this point in the history
  • Loading branch information
Malinskiy committed Jun 8, 2023
1 parent c8b814e commit cb26c01
Show file tree
Hide file tree
Showing 21 changed files with 21,401 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
root = true

[*.ts]
indent_size = 2
indent_style = space

[*.js]
indent_size = 2
indent_style = space
22 changes: 22 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
module.exports = {
"env": {
"browser": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"overrides": [
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
}
}
61 changes: 61 additions & 0 deletions .github/workflows/integration-test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
name: Integration Test

on:
pull_request: {}
push:
branches:
- main
schedule:
# we run integration tests every day to make sure it works with the latest version of marathon-cloud
- cron: '0 0 * * *' # daily at 00:00 UTC

jobs:
test-latest-versions:
strategy:
matrix:
version:
- latest
- '*'
- ''
- '0.1.1'
skip-cache:
- true
- false
uses: ./.github/workflows/test-marathon-cloud.yaml
with:
version: ${{ matrix.version }}
skip-cache: ${{ matrix.skip-cache }}
with-github-token: 'true'
secrets: inherit

test-specified-versions-no-github-token:
strategy:
matrix:
version:
- '0.1.0'
- '0.1.1'
skip-cache:
- true
- false
uses: ./.github/workflows/test-marathon-cloud.yaml
with:
version: ${{ matrix.version }}
skip-cache: ${{ matrix.skip-cache }}
with-github-token: 'false'
secrets: inherit

test-specified-versions-with-github-token:
strategy:
matrix:
version:
- '0.1.0'
- '0.1.1'
skip-cache:
- true
- false
uses: ./.github/workflows/test-marathon-cloud.yaml
with:
version: ${{ matrix.version }}
skip-cache: ${{ matrix.skip-cache }}
with-github-token: 'true'
secrets: inherit
79 changes: 79 additions & 0 deletions .github/workflows/test-marathon-cloud.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
name: Test workflow

on:
# for manual trigger
workflow_dispatch:
inputs:
version:
description: 'marathon-cloud version to use'
required: true
default: '*'
skip-cache:
description: 'skip cache?'
required: false
default: 'false'
with-github-token:
description: 'with github token?'
required: false
default: 'true'
# for integration testing
workflow_call:
inputs:
version:
type: string
description: 'marathon-cloud version to use'
required: true
default: '*'
skip-cache:
type: string
description: 'skip cache?'
required: false
default: 'false'
with-github-token:
type: string
description: 'with github token?'
required: false
default: 'true'

jobs:
test-with-github-token:
strategy:
matrix:
# TODO(hbc): add ARM64 runners
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
if: ${{ inputs.with-github-token == 'true' }}

steps:
- uses: actions/checkout@v3
name: Checkout code
- uses: ./ # use current branch
name: Setup marathon-cloud
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
version: ${{ inputs.version }}
skip-cache: ${{ inputs.skip-cache }}
- run: |
marathon-cloud --help
name: Invoke marathon-cloud
test-without-github-token:
strategy:
matrix:
# TODO(hbc): add ARM64 runners
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
if: ${{ inputs.with-github-token != 'true' }}

steps:
- uses: actions/checkout@v3
name: Checkout code
- uses: ./ # use current branch
name: Setup marathon-cloud
with:
version: ${{ inputs.version }}
skip-cache: ${{ inputs.skip-cache }}
- run: |
marathon-cloud --help
name: Invoke marathon-cloud
18 changes: 18 additions & 0 deletions .github/workflows/unit-test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Unit Test

on:
pull_request: {}
push:
branches:
- main

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- run: npm ci
- run: npm run test-ci
130 changes: 130 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,130 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# Snowpack dependency directory (https://snowpack.dev/)
web_modules/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional stylelint cache
.stylelintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variable files
.env
.env.development.local
.env.test.local
.env.production.local
.env.local

# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache

# Next.js build output
.next
out

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# vuepress v2.x temp and cache directory
.temp
.cache

# Docusaurus cache and generated files
.docusaurus

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port

# Stores VSCode versions used for testing VSCode extensions
.vscode-test

# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
7 changes: 7 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
*.yaml
*.yml
*.md
*.js
lib/*
coverage/*
package-lock.json
2 changes: 2 additions & 0 deletions .prettierrc.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
tabWidth: 2
singleQuote: true
Loading

0 comments on commit cb26c01

Please sign in to comment.