Skip to content

Feat/rename to repoverse #4

Feat/rename to repoverse

Feat/rename to repoverse #4

Workflow file for this run

# Reusable workflow for PRs; to eject, you can replace this file with
# https://github.com/ryansonshine/ryansonshine/blob/main/.github/workflows/pr.yml
name: Pull Request
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node.js Environment
uses: actions/setup-node@v3
with:
node-version: lts/*
- name: Install Dependencies
run: npm i
- name: Build Project
run: npm run build
- name: Run Test Suite
run: npm run test
- name: Upload Code Coverage
uses: codecov/[email protected]