Skip to content

Commit

Permalink
feat: ✨ add GitHub Actions workflow for automated testing
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewdyer committed Jan 21, 2025
1 parent 74f3413 commit b836fcc
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/prepare
- run: npm test
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ This template includes the following tools and configurations:
- [Storybook](https://storybook.js.org/) for building and testing UI components in isolation.
- [Prettier](https://prettier.io/) for consistent code formatting across the codebase.
- [Husky](https://typicode.github.io/husky/#/) for Git hooks to automate tasks such formatting and testing before commits.
- CI (Continuous Integration) setup with [GitHub Actions](https://github.com/features/actions) for automated package publishing to npmjs.
- CI (Continuous Integration) setup with [GitHub Actions](https://github.com/features/actions) for automated testing and publishing the package to npmjs.

## 🚀 Getting Started

Expand Down

0 comments on commit b836fcc

Please sign in to comment.