Skip to content

perf(deps): bump rollup from 3.29.1 to 4.5.1 #78

perf(deps): bump rollup from 3.29.1 to 4.5.1

perf(deps): bump rollup from 3.29.1 to 4.5.1 #78

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-20.04
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: '16'
cache: 'npm'
- name: init
run: npm ci
- name: types
run: npm run types
- name: lint
run: npm run lint
- name: test
run: npm test -- --coverage
release:
needs: test
runs-on: ubuntu-20.04
timeout-minutes: 10
# skip the job if the pull request was opened by Dependabot
if: ${{ github.actor != 'dependabot[bot]' }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: '16'
cache: 'npm'
- name: init
run: npm ci
- name: prepare
run: npm run prep
- name: release
run: npx --no-install semantic-release
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}