Skip to content

schedule create metaobject in shopify #525

schedule create metaobject in shopify

schedule create metaobject in shopify #525

Workflow file for this run

name: Run Tests on Pull Request
on:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.ref }}
- name: Setup Node.js 18
uses: actions/setup-node@v2
with:
node-version: 18
- name: Cache Node Modules
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: ${{ runner.os }}-node-
- name: Install Dependencies
run: npm ci
- name: Generate GraphQL types
run: npm run graphql:codegen
- name: Run Tests
run: npm run test