Skip to content

Commit

Permalink
Create Unit_tests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
wiktorrudzki authored Jan 13, 2024
1 parent 832ebd9 commit 6277ac0
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 6277ac0

Please sign in to comment.