Skip to content

build(deps): bump rollup from 4.18.0 to 4.24.0 (#69) #106

build(deps): bump rollup from 4.18.0 to 4.24.0 (#69)

build(deps): bump rollup from 4.18.0 to 4.24.0 (#69) #106

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
tags: ["*"]
jobs:
lint:
name: Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
- run: npm ci
- name: Prettier
run: |
npx prettier --check .
- name: eslint
run: |
npx eslint
build:
name: Build and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
- run: npm ci
- name: Build
run: |
npm run build
- name: Test
run: |
npm run test