Skip to content

feat: v0.18.0

feat: v0.18.0 #458

Workflow file for this run

name: Build
on:
pull_request:
types: [ready_for_review, opened, synchronize, reopened]
paths:
- 'tsconfig.json'
- 'rollup.config.js'
- 'src/**/*.ts'
- 'package-lock.json'
branches:
- main
- 'release/*'
jobs:
rollup:
timeout-minutes: 10
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: 'npm'
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Rollup
run: npm run build