Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

app:scaffold based on github release instead of git branches #156

Merged
merged 16 commits into from
Oct 24, 2022
7 changes: 4 additions & 3 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@
"plugin:@typescript-eslint/recommended"
],
"rules": {
"no-shadow": "off",
"@typescript-eslint/no-shadow": "error",
"@typescript-eslint/explicit-module-boundary-types": 0,
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/explicit-module-boundary-types": 0
"@typescript-eslint/no-shadow": "error",
"no-empty": ["error", { "allowEmptyCatch": true }],
"no-shadow": "off"
}
}
6 changes: 3 additions & 3 deletions .github/workflows/pull_request.workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: [pull_request]
jobs:
lint:
name: Lint
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- name: Cache node modules
Expand All @@ -26,7 +26,7 @@ jobs:

build:
name: Build
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
needs: [lint]
steps:
- uses: actions/checkout@v2
Expand All @@ -53,7 +53,7 @@ jobs:

functional-test:
name: Functional Test - ${{ matrix.test-set }}
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
needs: [build]
strategy:
matrix:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/push_dev.workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
lint:
name: Lint
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- name: Cache node modules
Expand All @@ -29,7 +29,7 @@ jobs:

build:
name: Build
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
needs: [lint]
steps:
- uses: actions/checkout@v2
Expand All @@ -56,7 +56,7 @@ jobs:

functional-test:
name: Functional Test - ${{ matrix.test-set }}
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
needs: [build]
strategy:
matrix:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/push_master.workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
lint:
name: Lint
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- name: Cache node modules
Expand All @@ -29,7 +29,7 @@ jobs:

build:
name: Build
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
needs: [lint]
steps:
- uses: actions/checkout@v2
Expand All @@ -56,7 +56,7 @@ jobs:

functional-test:
name: Functional Test - ${{ matrix.test-set }}
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
needs: [build]
strategy:
matrix:
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:

deploy:
name: Deploy to NPM.js
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
needs: [functional-test]
steps:
- uses: actions/checkout@v2
Expand Down
Loading