-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
50 additions
and
74 deletions.
There are no files selected for viewing
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
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 |
This file was deleted.
Oops, something went wrong.