Skip to content

Checking out workflow dispatch #129

Checking out workflow dispatch

Checking out workflow dispatch #129

Workflow file for this run

name: CI
on:
push:
pull_request:
types: [opened, synchronize]
jobs:
CI:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build package
run: npm run build -- --filter=svelte-reveal