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

CON-X - Github actions lint #821

Closed
wants to merge 10 commits into from
7 changes: 4 additions & 3 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,14 @@ defaults:
jobs:
lint:
container:
image: node:9
image: node:16
credentials:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: lint
- name: Check out code
uses: actions/checkout@v3
- name: Run Lint
run: |
npm install && npm run build && npm run lint
Loading