fix: disable check in ci for now #19
This file contains 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: ci π | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
name: checkout code π₯ | |
- name: install pnpm π¦ | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 9.5.0 | |
- name: setup node π’ | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20.10.0" | |
cache: "pnpm" | |
- name: install dependencies π§ | |
run: pnpm install | |
- name: run check β | |
run: pnpm check | |
create-plainweb: | |
runs-on: ubuntu-latest | |
steps: | |
- name: install pnpm π¦ | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 9.5.0 | |
- name: setup node π’ | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20.10.0" | |
- name: create plainweb project πͺ¨ | |
run: | | |
pnpm dlx create-plainweb@latest my-plainweb-project --yes --no-git-init --debug | |
env: | |
npm_config_user_agent: ${{ github.actor }} | |
- name: run build, test, and check π | |
run: | | |
cd my-plainweb-project | |
pnpm build | |
pnpm test |