chore: add google search console #162
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |