UNPKG

react-linear-gradient-picker

Version:
35 lines (26 loc) 574 B
name: CI on: push: branches: [ main ] pull_request: branches: [ main ] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Setup Node.js uses: actions/setup-node@v4 with: node-version: '20.12.2' cache: 'yarn' - name: Install dependencies run: yarn install --frozen-lockfile - name: Run linting run: yarn lint - name: Run tests run: yarn test - name: Build package run: yarn build - name: Build Storybook run: yarn build-storybook