Skip to content

build(deps-dev): bump stylelint from 13.13.1 to 15.10.1 #106

build(deps-dev): bump stylelint from 13.13.1 to 15.10.1

build(deps-dev): bump stylelint from 13.13.1 to 15.10.1 #106

Workflow file for this run

name: Build
on:
push:
branches-ignore:
- gh-pages
workflow_dispatch:
pull_request:
jobs:
build:
name: Build and Deploy
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v2
with:
node-version: '14'
- name: Checkout Repository
uses: actions/checkout@v2
with:
fetch-depth: '0'
persist-credentials: false
submodules: 'recursive'
- name: Cache yarn
uses: c-hive/gha-yarn-cache@v2
- name: Install
run: yarn install
- name: Build and Analysis
run: yarn build && yarn analysis
- name: Deploy
uses: JamesIves/[email protected]
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main'}}
with:
branch: gh-pages
folder: website
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v2
with:
node-version: '14'
- name: Checkout Repository
uses: actions/checkout@v2
with:
fetch-depth: '0'
submodules: 'recursive'
- name: Cache yarn
uses: c-hive/gha-yarn-cache@v2
- name: Install
run: yarn install
- name: Lint
run: yarn lintci