Skip to content

[PB-3783] feature/Add header component #103

[PB-3783] feature/Add header component

[PB-3783] feature/Add header component #103

Workflow file for this run

name: Components Testing
on:
pull_request:
types:
- opened
- synchronize
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: |
echo "@internxt:registry=https://npm.pkg.github.com/" > .npmrc
echo "//npm.pkg.github.com/:_authToken=${{ secrets.PERSONAL_ACCESS_TOKEN }}" >> .npmrc
- name: Install dependencies
run: yarn
- name: Build the project
run: yarn build
- name: Run Tests
run: yarn test