diff --git a/.github/workflows/group-call-002.yaml b/.github/workflows/group-call-002.yaml new file mode 100644 index 0000000..c2e0230 --- /dev/null +++ b/.github/workflows/group-call-002.yaml @@ -0,0 +1,27 @@ +name: Tests +on: + push: + branches: + - '*' + +jobs: + tests: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Install Node.js + uses: actions/setup-node@v4 + with: + node-version: '20.x' + + - name: Install Dependencies + run: | + npm i + working-directory: group-call-002 + + - name: Run Tests + run: | + npm run test + working-directory: group-call-002