Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Jun 13, 2021
1 parent 3cefa99 commit 313cff6
Show file tree
Hide file tree
Showing 10 changed files with 604 additions and 13 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/examples.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: examples

on:
workflow_dispatch:

jobs:
examples:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
- name: Install production and development dependencies
run: |
npm install
- name: Run examples
run: |
npm run examples
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
run: |
git config --local user.email "noreply@stdlib.io"
git config --local user.name "stdlib-bot"
npm version prerelease --preid=alpha
npm version patch
- name: Publish package to npm
uses: JS-DevTools/npm-publish@v1
with:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: Pass Tests
name: build

on: push
on:
workflow_dispatch:

jobs:
tests:
if: false
test:
runs-on: ubuntu-latest
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
Expand Down
24 changes: 24 additions & 0 deletions .github/workflows/test_coverage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: coverage

on:
workflow_dispatch:

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
- name: Install production and development dependencies
run: |
npm install
- name: Calculate test coverage
run: |
npm run test-cov
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
directory: reports/coverage
flags: unittests
4 changes: 0 additions & 4 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,6 @@ workshops/
**/test/
!/deps/test/

# Ignore top-level tools directory, except for scripts:
/tools/*
!/tools/scripts/

# Only top-level directories:
/etc/
/docs/
Expand Down
2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Code of Conduct

stdlib expects community participants to adhere to the project Code of Conduct. The [full text](https://github.com/stdlib-js/stdlib/blob/develop/CODE_OF_CONDUCT.md) is available in the main project repository.
stdlib expects community participants to adhere to the project Code of Conduct. The [full text](https://github.com/stdlib-js/stdlib/blob/develop/CODE_OF_CONDUCT.md) is available in the main project repository.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Contribution Guidelines

Woot woot! If you are new to stdlib, welcome! And thanks for your interest! Guidelines for how to contribute to the project are [available](https://github.com/stdlib-js/stdlib/blob/develop/CONTRIBUTING.md) in the main project repository.
Woot woot! If you are new to stdlib, welcome! And thanks for your interest! Guidelines for how to contribute to the project are [available](https://github.com/stdlib-js/stdlib/blob/develop/CONTRIBUTING.md) in the main project repository.
Loading

0 comments on commit 313cff6

Please sign in to comment.