Skip to content

[Small Typo] Fix small typo by changing \^ to ^ #90

[Small Typo] Fix small typo by changing \^ to ^

[Small Typo] Fix small typo by changing \^ to ^ #90

Workflow file for this run

name: Prettify Source
on:
push:
branches:
- master
pull_request:
jobs:
ci:
name: Run Prettier
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 16
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run Prettier
run: yarn prettier:check