Skip to content

Update build.yml

Update build.yml #6

Workflow file for this run

name: build
# Controls when the workflow will run
on:
push:
branches:
- main
paths:
- 'packages/nice-form-react/src/**'
- '.github/workflows/build.yml'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18.13.0
- uses: pnpm/action-setup@v3
with:
version: 8
# Install dependencies
- name: Install dependencies
run: pnpm i
- name: Unit tests
run: |
cd packages/nice-form-react
pnpm test
- name: Coveralls
uses: coverallsapp/github-action@v2
- name: Build
run: |
cd packages/nice-form-react
pnpm build