Skip to content

Merge pull request #391 from preactjs/cursed-class-name #538

Merge pull request #391 from preactjs/cursed-class-name

Merge pull request #391 from preactjs/cursed-class-name #538

Workflow file for this run

name: CI
on:
workflow_dispatch:
pull_request:
branches:
- '**'
push:
branches:
- main
jobs:
build_test:
name: Build & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
- run: npm ci
- name: test
# Not using `npm test` since it rebuilds source which npm ci has already done
run: |
npm run build
npm run test