Skip to content

Commit

Permalink
chore: add ci
Browse files Browse the repository at this point in the history
  • Loading branch information
eMerzh committed Mar 15, 2024
1 parent 981f88a commit 65fb49b
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Check

on:
push:
pull_request:

jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup JS
uses: actions/setup-node@v4
with:
cache: "yarn"
- run: yarn install --frozen-lockfile # optional, --immutable
- run: yarn test
- run: yarn lint

0 comments on commit 65fb49b

Please sign in to comment.