feat: adding preselected values on registry #138
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: PR Build Check | |
on: | |
pull_request: | |
branches: | |
- main | |
permissions: | |
pull-requests: read | |
jobs: | |
########### BUILD PACKAGE ############ | |
build-package: | |
name: Build Package | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: PNPM Install | |
uses: pnpm/action-setup@v3 | |
with: | |
version: 8.15.5 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20.10.0 | |
cache: 'pnpm' | |
registry-url: https://registry.npmjs.org/ | |
- run: corepack enable | |
- name: PNPM version | |
run: pnpm -v | |
- name: Install NPM Dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Build Check | |
if: ${{ always() }} | |
run: pnpm build | |
- name: Test | |
run: pnpm run test |