Skip to content

Commit

Permalink
chore: add git actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Mordech committed Sep 23, 2023
1 parent ef3bf0f commit 4db6a46
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Build & test affected

on:
pull_request:
branches: [ "main" ]

jobs:
status-checks:
name: Build & test affected
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Install dependencies
run: yarn install --frozen-lockfile

- name: Build & test affected
run: yarn lerna run build,lint --since=origin/main

0 comments on commit 4db6a46

Please sign in to comment.