This repository has been archived by the owner on Oct 8, 2023. It is now read-only.
Update dependency @keystone-6/core to ^5.7.0 #1045
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: Test build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
linting: | |
name: Linting | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
- name: Setup Node.js 16.x | |
uses: actions/setup-node@main | |
with: | |
node-version: 16.x | |
- name: Install Dependencies | |
run: yarn | |
- name: Prettier | |
run: yarn test:prettier | |
- name: linting | |
run: yarn manypkg run signup-frontend next lint | |
- name: Types | |
run: yarn test:types | |
- name: Build Keystone | |
run: yarn build:backend |