publish app #18
Workflow file for this run
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: Run graphql CI | |
on: | |
pull_request: | |
paths: | |
- "graphql-server/**" | |
workflow_dispatch: | |
concurrency: | |
group: ci-graphql-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
ci: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Enable Corepack | |
run: corepack enable | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "18" | |
- name: Install and run graphql CI | |
working-directory: ./graphql-server | |
run: | | |
yarn | |
yarn run ci |