Skip to content

Commit

Permalink
adds process workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jomurgel committed Sep 5, 2024
1 parent f57ddd1 commit 3a8ae5d
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/process.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Process - Lint and Test

on:
workflow_dispatch:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Main Branch
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: main
- run: |
npm ci
npm run lint
npm run test

0 comments on commit 3a8ae5d

Please sign in to comment.