Skip to content

docs: update Instructions for creating an Issue #763

docs: update Instructions for creating an Issue

docs: update Instructions for creating an Issue #763

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Cache node modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
path: |
~/.npm
./node_modules
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Commitlint
if: github.event_name == 'pull_request'
uses: wagoid/commitlint-github-action@v4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-node@v2
with:
node-version: '14'
registry-url: 'https://registry.npmjs.org'
- name: Install Dependencies
run: npm install
- name: Build
run: npm run build
- name: Bundlesize
run: npx bundlesize
- name: Lint & Format
run: |
npm run format
npm run lint
- name: Test
run: npm run test
- name: E2E Test
run: |
npm run build:ssr
npm run e2e:ssr