Skip to content

Commit

Permalink
create workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
radekm2000 committed Feb 18, 2024
1 parent 95391f2 commit 27c3204
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Backend build CI
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
env:
APP_PATH: server/ecommerce
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- name: Installing dependencies
run: cd $APP_PATH && npm i
- name: Run tests
run: cd $APP_PATH$ && npm test

0 comments on commit 27c3204

Please sign in to comment.