Skip to content

Commit

Permalink
fix: remove codesee and add codecov
Browse files Browse the repository at this point in the history
  • Loading branch information
rsaz committed Jun 20, 2024
1 parent 0b564a5 commit 78354de
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 74 deletions.
101 changes: 50 additions & 51 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -1,51 +1,50 @@
# name: Build and Test

# on:
# push:
# branches:
# - main
# pull_request:
# branches: ["main"]
# pull_request_target:
# types: [opened, synchronize, reopened]

# jobs:
# build:
# runs-on: ubuntu-latest

# steps:
# - name: Checkout code
# uses: actions/checkout@v2

# - name: Use Node.js
# uses: actions/setup-node@v2
# with:
# node-version: "18.11.0"

# - name: Install Dependencies
# run: npm install

# - name: Build
# run: npm run build

# - name: Unit Tests
# working-directory: ./src
# run: npm run test
# env:
# CI: true

# - name: Run Code Coverage
# working-directory: ./src
# run: npm run coverage

# - name: Upload coverage reports to Codecov
# uses: codecov/[email protected]
# with:
# working-directory: .
# token: ${{ secrets.CODECOV_TOKEN }}

# - name: Set up .npmrc
# run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc

# - name: Install dependencies
# run: npm ci
name: Build and Test

on:
push:
branches:
- main
pull_request:
# The branches below must be a subset of the branches above
branches: ["main"]
pull_request_target:
types: [opened, synchronize, reopened]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: "18.11.0"

- name: Install Dependencies
run: npm install

- name: Build
run: npm run build

- name: ExpressoTS Tests
working-directory: packages/core
run: npm run test
env:
CI: true

- name: Run Code Coverage
working-directory: packages/core
run: npm run coverage

- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
working-directory: .
token: ${{ secrets.CODECOV_TOKEN }}
slug: expressots/expressots

- name: Install dependencies
run: npm ci
23 changes: 0 additions & 23 deletions .github/workflows/codesee-arch-diagram.yml

This file was deleted.

0 comments on commit 78354de

Please sign in to comment.