Skip to content

Docs for Blitz RPC endpoint to the app directory #2155

Docs for Blitz RPC endpoint to the app directory

Docs for Blitz RPC endpoint to the app directory #2155

Workflow file for this run

name: CI
on:
push:
branches:
- main
- canary
pull_request:
branches:
- main
- canary
jobs:
lint:
name: Build & Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: "14.x"
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Cache Node.js modules
id: yarn-cache
uses: actions/cache@v1
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn install --frozen-lockfile --silent
env:
CI: true
- name: Build Blitz Website
run: yarn build
env:
CI: true
- name: Lint Blitz Website
run: yarn lint
env:
CI: true