chore(deps): update dependency @testing-library/react to v14.1.2 #47
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 📦 Build and test npm Package | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout source code' | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Checkout all branches and tags | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18.x' | |
registry-url: 'https://registry.npmjs.org' | |
scope: '@kaoto-next' | |
cache: 'yarn' | |
# Install dependencies | |
- run: yarn | |
# Run tests | |
- name: 🧪 Run tests | |
run: yarn run test | |
# Build packages | |
- name: Build @kaoto-next/uniforms-patternfly | |
run: yarn run build |