# This file contains the main workflow for the create-react-component-library project. It defines the steps and actions that are executed when a pull request is opened or pushed to the repository. The workflow includes building and testing the project, as well as deploying it to GitHub Pages if the build is successful.
# Name of the workflow
name:Testing package
# Events that trigger the workflow
on:
push:
branches:[master ]
pull_request:
branches:['*']
# Jobs that run as part of the workflow
jobs:
# Job to run tests
test:
runs-on:ubuntu-latest
strategy:
matrix:
node-version:[16.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/