Skip to content

Commit

Permalink
wip: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
jagnani73 committed Dec 4, 2023
1 parent 3b367c1 commit 0b5c334
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 36 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/lint-and-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Lint and Build
on:
push:
branches: ["main"]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install dependencies
run: yarn install
- name: Lint
run: yarn lint
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install dependencies
run: npm install
- name: Build
run: npm run build:library
36 changes: 0 additions & 36 deletions .github/workflows/linter.yml

This file was deleted.

0 comments on commit 0b5c334

Please sign in to comment.