Skip to content

Make yarn-run-dev not move queries.json to build folder #652

Make yarn-run-dev not move queries.json to build folder

Make yarn-run-dev not move queries.json to build folder #652

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-lint-modules-${{ hashFiles('**/yarn.lock') }}
- uses: actions/setup-node@v2
with:
node-version: 16.x
- run: yarn install --ignore-scripts
- run: yarn run lint
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node-version:
- 14.x
- 16.x
steps:
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Checkout
uses: actions/[email protected]
with:
persist-credentials: false
- uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-build-modules-${{ hashFiles('**/yarn.lock') }}
- run: yarn install --ignore-scripts
- run: yarn run build
deploy:
if: github.ref == 'refs/heads/master'
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-deploy-modules-${{ hashFiles('**/yarn.lock') }}
- uses: actions/setup-node@v2
with:
node-version: 16.x
- run: yarn install --ignore-scripts
- run: yarn run build
- run: rm .gitignore
- uses: JamesIves/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: build
CLEAN: true