Skip to content

Commit 5871f22

Browse files
committed
Auto-generated commit
1 parent f1e27d9 commit 5871f22

10 files changed

+604
-13
lines changed

.github/workflows/examples.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: examples
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
examples:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v2
11+
- uses: actions/setup-node@v1
12+
with:
13+
node-version: 14
14+
- name: Install production and development dependencies
15+
run: |
16+
npm install
17+
- name: Run examples
18+
run: |
19+
npm run examples

.github/workflows/publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
run: |
1717
git config --local user.email "[email protected]"
1818
git config --local user.name "stdlib-bot"
19-
npm version prerelease --preid=alpha
19+
npm version patch
2020
- name: Publish package to npm
2121
uses: JS-DevTools/npm-publish@v1
2222
with:

.github/workflows/pass_tests.yml .github/workflows/test.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
name: Pass Tests
1+
name: build
22

3-
on: push
3+
on:
4+
workflow_dispatch:
45

56
jobs:
6-
tests:
7-
if: false
7+
test:
88
runs-on: ubuntu-latest
99
env:
1010
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}

.github/workflows/test_coverage.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: coverage
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
test:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v2
11+
- uses: actions/setup-node@v1
12+
with:
13+
node-version: 14
14+
- name: Install production and development dependencies
15+
run: |
16+
npm install
17+
- name: Calculate test coverage
18+
run: |
19+
npm run test-cov
20+
- name: Upload coverage to Codecov
21+
uses: codecov/codecov-action@v1
22+
with:
23+
directory: reports/coverage
24+
flags: unittests

.npmignore

-4
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,6 @@ workshops/
4141
**/test/
4242
!/deps/test/
4343

44-
# Ignore top-level tools directory, except for scripts:
45-
/tools/*
46-
!/tools/scripts/
47-
4844
# Only top-level directories:
4945
/etc/
5046
/docs/

CODE_OF_CONDUCT.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Code of Conduct
22

3-
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.
3+
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.

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Contribution Guidelines
22

3-
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.
3+
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.

0 commit comments

Comments
 (0)