From 89688abadfd6e896e20b4e22bdbee1b6b8bbb8c6 Mon Sep 17 00:00:00 2001 From: filipenevola Date: Tue, 2 Apr 2024 11:51:29 -0400 Subject: [PATCH] group-call-002 - github action --- .github/workflows/group-call-002.yaml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/group-call-002.yaml 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