Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
16 changes: 0 additions & 16 deletions .editorconfig

This file was deleted.

30 changes: 30 additions & 0 deletions .github/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Lint

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
lint:
runs-on: ubuntu-latest

steps:
- name: Git Checkout
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

- name: Set up Node.js
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
# We want to ensure that the Node.js version running here respects our supported versions
node-version-file: ".nvmrc"
cache: "yarn"

- name: Install packages
run: yarn install --frozen-lockfile

- name: Lint
run: node --run lint && node --run format
37 changes: 37 additions & 0 deletions .github/measure.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Measure

on:
workflow_dispatch:
inputs:
versions:
description: "Versions to install"
required: false
push:
branches:
- main
pull_request:
branches:
- main

jobs:
benchmark:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: "yarn"

- name: Add and install Dependencies
run: yarn add ${{ github.event.inputs.versions || "webpack@latest vite@latest parcel@latest esbuild@latest" }}

- name: Run benchmark
run: yarn start --reporter json

- uses: actions/upload-artifact@v4
with:
name: benchmark
path: output.json
87 changes: 0 additions & 87 deletions .github/workflows/compare.yml

This file was deleted.

75 changes: 0 additions & 75 deletions .github/workflows/measure-all-cases.yml

This file was deleted.

85 changes: 0 additions & 85 deletions .github/workflows/measure-date.yml

This file was deleted.

Loading