Skip to content

Fix typo in README.md for goBackToStart type #14

Fix typo in README.md for goBackToStart type

Fix typo in README.md for goBackToStart type #14

Workflow file for this run

name: pull-request
on:
pull_request:
types: [opened, synchronize, edited]
jobs:
title:
name: Ensure that title uses gitmoji
runs-on: ubuntu-latest
steps:
- uses: paralenz/actions/gitmoji@v2.1.1
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: 16
- name: Cache dependencies
id: cache-deps
uses: actions/cache@v3
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies
run: yarn install --frozen-lockfile --ignore-scripts
- name: Build
run: yarn build
- name: Linting
run: yarn lint
- name: Testing
run: yarn test