Skip to content

chore: add google search console #162

chore: add google search console

chore: add google search console #162

Workflow file for this run

name: Test on Pull Request
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches:
- main
jobs:
build:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: "16.x" # Choose the Node.js version you need
- name: Install Dependencies
run: rm -rf node_modules && npm install # Or yarn install if you're using Yarn
- name: Run Tests
run: npm run test # Or replace this with the command to run your tests
- name: Run lint
run: npm run lint # Or replace this with the command to run your tests