Skip to content

chore(deps-dev): bump rollup-plugin-dts from 5.3.1 to 6.1.1 #44

chore(deps-dev): bump rollup-plugin-dts from 5.3.1 to 6.1.1

chore(deps-dev): bump rollup-plugin-dts from 5.3.1 to 6.1.1 #44

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '18' # Set the Node.js version here
- name: Cache Yarn packages
uses: actions/cache@v4
with:
path: ~/.cache/yarn
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build project
run: yarn run release
- name: Test project
run: yarn test