feat!: use css-tree, rewrite package for ESM #5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Validate | |
on: | |
pull_request: | |
types: | |
- edited | |
- opened | |
- synchronize | |
push: | |
branches: | |
- '*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Validate | |
steps: | |
- name: Checkout Commit | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.19.0 | |
- name: Install PNPM | |
uses: pnpm/action-setup@v4 | |
- name: Sanity Check | |
run: | | |
echo branch `git branch --show-current`; | |
echo node `node --version`; | |
echo yarn `pnpm --version` | |
- name: pnpm install | |
run: pnpm install | |
- name: Lint Repo | |
run: pnpm lint | |
- name: Run Tests | |
run: pnpm test |