Skip to content

Commit

Permalink
Run linter in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
sehyod committed Nov 22, 2023
1 parent 9b8686c commit a74bbda
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,22 @@ on:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: Use Node.js 18
uses: actions/setup-node@v4
with:
node-version: 20
cache: "yarn"
cache-dependency-path: "yarn.lock"
- name: Install node dependencies
run: yarn install --frozen-lockfile
- name: Run linter
run: yarn lint

run-tests:
runs-on: macos-12
strategy:
Expand Down

0 comments on commit a74bbda

Please sign in to comment.