Skip to content

change welcome text #309

change welcome text

change welcome text #309

# This workflow will run the npm run check script to check if the formatting of the code is correct or not.
name: Code format check with Prettier
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- name: Running the npm run check script
run: npm run check