Skip to content

Commit

Permalink
Merge pull request #12 from OneBusAway/ci
Browse files Browse the repository at this point in the history
Adds basic CI
  • Loading branch information
aaronbrethorst authored Jul 3, 2024
2 parents 69b00aa + a47be2e commit ad61710
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Lint

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 18

- name: Install dependencies
run: npm install

- name: Run lint
run: npm run lint

0 comments on commit ad61710

Please sign in to comment.