Skip to content

Commit

Permalink
Merge pull request #17 from grupadotnet/create-ci-for-unit-tests
Browse files Browse the repository at this point in the history
Create ci for unit tests
  • Loading branch information
wiktorrudzki authored Jan 14, 2024
2 parents 555de5d + 4d9fbcb commit e853268
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/Unit_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs

name: Unit_tests

on:
push:
branches: 'main'
pull_request:
branches: '**'

jobs:
test:
name: Run tests
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
name: Check out Git repository

- uses: actions/setup-node@v3
name: Set up Node.js
with:
node-version: 18
cache: 'yarn'

- name: Install Node.js dependencies
run: yarn

- name: Run tests
run: yarn test
if: success() || failure()

0 comments on commit e853268

Please sign in to comment.