Data model , proof and request #50
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 Eslint & Test cases | |
on: | |
pull_request: | |
branches: ['main'] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Project | |
uses: actions/checkout@v3 | |
- name: Install pnpm | |
run: npm install -g [email protected] | |
- name: Install Project Dependencies | |
run: pnpm install | |
- name: Run Eslint | |
run: pnpm lint | |
- name: Build Graphql queries | |
run: pnpm mesh build | |
- name: Test project | |
run: pnpm test | |
env: | |
DATAMODEL_ID: ${{ secrets.DATAMODEL_ID }} | |
BEARER_TOKEN: ${{ secrets.BEARER_TOKEN }} | |
API_KEY: ${{ secrets.API_KEY }} | |
ORGAINZATION_ID: ${{ secrets.ORGAINZATION_ID }} |