Skip to content

CON-X - Github actions lint #289

CON-X - Github actions lint

CON-X - Github actions lint #289

Workflow file for this run

---
name: Pull Request
on:
pull_request:
defaults:
run:
shell: 'script -q -e -c "export TERM=xterm-256color; bash {0}"'
jobs:
lint:
container:
image: node:12
credentials:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Run Lint
run: |
npm install && npm run build && npm run lint