Skip to content

[PB-2872]: Feat/radio button component #5

[PB-2872]: Feat/radio button component

[PB-2872]: Feat/radio button component #5

Workflow file for this run

name: Components Testing
on:
pull_request:
types:
- opened
- synchronize
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: echo "registry=https://registry.yarnpkg.com/" > .npmrc
- run: echo "@internxt:registry=https://npm.pkg.github.com" >> .npmrc
# You cannot read packages from other private repos with GITHUB_TOKEN
# You have to use a PAT instead https://github.com/actions/setup-node/issues/49
- run: echo //npm.pkg.github.com/:_authToken=${{ secrets.PERSONAL_ACCESS_TOKEN }} >> .npmrc
- run: echo "always-auth=true" >> .npmrc
- name: Install dependencies
run: yarn
- name: Build the project
run: yarn build
- name: Run Tests
run: yarn test
- name: Tests Artifactis
uses: actions/upload-artifact@v4
if: always()
with:
name: vitest-report
path: tests/videos/**/*