Skip to content

Commit

Permalink
Create unit-tests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
supnate committed Mar 17, 2024
1 parent e16d823 commit d214ef1
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# This is a basic workflow to help you get started with Actions

name: unit-tests

# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches:
- main
paths:
- 'packages/nice-form-react/src/**'

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18.13.0

- uses: pnpm/action-setup@v3
with:
version: 8

# Install dependencies
- name: Install dependencies
run: pnpm i

# Build API docs and examples
- name: Unit tests
run: |
cd packages/nice-form-react
pnpm test
- name: Coveralls
uses: coverallsapp/github-action@v2

0 comments on commit d214ef1

Please sign in to comment.