diff --git a/.github/workflows/process.yaml b/.github/workflows/process.yaml new file mode 100644 index 0000000..86744e0 --- /dev/null +++ b/.github/workflows/process.yaml @@ -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 \ No newline at end of file