Add possibility to deploy app manually #832
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint | |
on: | |
push: | |
branches-ignore: | |
- internal | |
- alpha | |
- beta | |
- master | |
jobs: | |
lint: | |
name: Lint Project | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup NodeJS | |
uses: actions/setup-node@v1 | |
with: | |
node-version: "14.x" | |
- run: yarn install | |
- name: Run ESLint on UI | |
run: yarn workspace @democracy-deutschland/mobile-ui lint:eslint | |
- name: Run TSLint on UI | |
run: yarn workspace @democracy-deutschland/mobile-ui lint:ts | |
- name: Run ESLint on App | |
run: yarn workspace app lint:eslint | |
- name: Run TSLint on App | |
run: yarn workspace app lint:ts | |
# - uses: stefanzweifel/git-auto-commit-action@v4.1.2 | |
# with: | |
# commit_message: Action – commit autofix changes |