Skip to content

issue #1310: [test] refactors Bucket GraphQL tests and adds RAGConfig… #1509

issue #1310: [test] refactors Bucket GraphQL tests and adds RAGConfig…

issue #1310: [test] refactors Bucket GraphQL tests and adds RAGConfig… #1509

Workflow file for this run

name: JS Monorepo CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.x
uses: actions/setup-node@v1
with:
node-version: 14.x
- run: yarn --frozen-lockfile --check-files
- run: CI=false yarn build
- uses: actions/cache@v1
id: cache-build
with:
path: "."
key: ${{ github.sha }}
lint:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/cache@v1
id: restore-build
with:
path: "."
key: ${{ github.sha }}
- run: yarn lint
test:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/cache@v1
id: restore-build
with:
path: "."
key: ${{ github.sha }}
- run: yarn test