Skip to content

Commit

Permalink
feat: add CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
zAlweNy26 committed Apr 1, 2024
1 parent 2bff538 commit dcd61b6
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Lint and Test

on:
push:
branches:
- main
- develop
paths-ignore:
- '**.md'
pull_request:
branches:
- main
- develop
paths-ignore:
- '**.md'

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 8
- uses: actions/setup-node@v4
with:
node-version: 18
cache: "pnpm"
- run: pnpm install --frozen-lockfile
- run: pnpm run lint
- run: pnpm run test

0 comments on commit dcd61b6

Please sign in to comment.