Skip to content

Commit

Permalink
run lint on 16
Browse files Browse the repository at this point in the history
  • Loading branch information
eniskraasniqi1 committed Jul 5, 2024
1 parent cfc020a commit fefe9a2
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,17 @@ defaults:

jobs:
lint:
container:
image: node:9
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
with:
node-version: 16
cache: 'npm'
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 16
cache: 'npm'
run: |
npm install && npm run build && npm run lint

0 comments on commit fefe9a2

Please sign in to comment.