Skip to content

Commit

Permalink
group-call-002 - github action
Browse files Browse the repository at this point in the history
  • Loading branch information
filipenevola committed Apr 2, 2024
1 parent 9704f78 commit 89688ab
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/group-call-002.yaml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 89688ab

Please sign in to comment.