Skip to content

Commit

Permalink
Enabling typescript linter
Browse files Browse the repository at this point in the history
Signed-off-by: Shivansh Vij <shivanshvij@loopholelabs.io>
  • Loading branch information
ShivanshVij committed Sep 7, 2023
1 parent b640e2c commit d649d21
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,25 @@ name: Lint
on: [pull_request]

jobs:
# typescript:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout
# uses: actions/checkout@v3
# - name: Setup node
# uses: actions/setup-node@v3
# with:
# node-version: "20"
# registry-url: "https://registry.npmjs.org"
# - name: Cache the dependency directories
# uses: actions/cache@v3
# with:
# path: node_modules
# key: ${{ runner.os }}-${{ hashFiles('*.json') }}
# - name: Install dependencies with npm
# run: npm install --save-dev
# - name: Lint with npm
# run: npm run lint
typescript:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: "20"
registry-url: "https://registry.npmjs.org"
- name: Cache the dependency directories
uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.os }}-${{ hashFiles('*.json') }}
- name: Install dependencies with npm
run: npm install --save-dev
- name: Lint with npm
run: npm run lint
# rust:
# runs-on: ubuntu-latest
# steps:
Expand Down

0 comments on commit d649d21

Please sign in to comment.