Skip to content

actions: add docs build workflow config #3

actions: add docs build workflow config

actions: add docs build workflow config #3

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
NODE_VERSION: "18"
jobs:
full-code-check:
runs-on: ubuntu-latest
steps:
- name: Full-check repository
uses: actions/checkout@v3
- uses: actions/setup-node@v2.5.1
with:
node-version: ${{ env.NODE_VERSION }}
check-latest: true
- name: Install dependecies
run: |
yarn install
- name: Lint code
run: |
yarn lint
- name: Build React
env:
CI: false
run: |
yarn build