Skip to content

Merge branch 'main' of github.com:midudev/tailwind-animations #96

Merge branch 'main' of github.com:midudev/tailwind-animations

Merge branch 'main' of github.com:midudev/tailwind-animations #96

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
types: [opened, synchronize, reopened]
jobs:
test:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Run Linter
run: bun run lint
- name: Run tests
run: bun run test:ci