Skip to content
This repository has been archived by the owner on Jul 31, 2024. It is now read-only.

Commit

Permalink
monorepo Merge remote-tracking branch 'origin/main' into monorepo
Browse files Browse the repository at this point in the history
  • Loading branch information
NikhilVerma committed Oct 9, 2023
2 parents 23079e4 + f62e071 commit acadf06
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Lint checks
on:
workflow_dispatch:
pull_request:
branches:
- main
defaults:
run:
shell: bash
working-directory: .
jobs:
lint:
name: Run lint checks
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Setup Node.js 18.x
uses: actions/setup-node@v2
with:
node-version: 18.x

- name: Install pnpm
run: corepack enable && corepack prepare [email protected] --activate

- name: Test build
run: make build

- name: ESlint
run: pnpm run lint

- name: Storybook
run: pnpm run build-storybook

0 comments on commit acadf06

Please sign in to comment.