Build schema from fields #1
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: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: π Checkout | |
uses: actions/checkout@v3 | |
- name: π§ Setup Node.js and pnpm | |
uses: pnpm/action-setup@v4 | |
- name: π¦ Install dependencies | |
run: pnpm install | |
- name: ποΈ Build | |
run: pnpm build | |
- name: π§ͺ Run tests | |
run: pnpm test |