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 May 1, 2022
1 parent cd32eac commit f4819aa
Show file tree
Hide file tree
Showing 15 changed files with 569 additions and 354 deletions.
2 changes: 1 addition & 1 deletion .github/.keepalive
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2022-04-01T01:41:39.924Z
2022-05-01T01:20:32.254Z
30 changes: 25 additions & 5 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,22 +21,42 @@ name: benchmark

# Workflow triggers:
on:
# Allow the workflow to be manually run:
workflow_dispatch:

# Workflow jobs:
jobs:

# Define a job to run benchmarks:
benchmark:
runs-on: ubuntu-latest

# Define a display name:
name: 'Run benchmarks'

# Define the type of virtual host machine:
runs-on: 'ubuntu-latest'

# Define the sequence of job steps...
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2

# Checkout the repository:
- name: 'Checkout repository'
uses: actions/checkout@v3

# Install Node.js:
- name: 'Install Node.js'
uses: actions/setup-node@v2
with:
node-version: 16
timeout-minutes: 5
- name: Install production and development dependencies

# Install dependencies:
- name: 'Install production and development dependencies'
run: |
npm install || npm install || npm install
timeout-minutes: 15
- name: Run benchmarks

# Run benchmarks:
- name: 'Run benchmarks'
run: |
npm run benchmark
19 changes: 17 additions & 2 deletions .github/workflows/cancel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,30 @@ name: cancel

# Workflow triggers:
on:
# Allow the workflow to be manually run:
workflow_dispatch:

# Workflow jobs:
jobs:

# Define a job to cancel existing workflow runs:
cancel:
runs-on: ubuntu-latest

# Define a display name:
name: 'Cancel workflow runs'

# Define the type of virtual host machine:
runs-on: 'ubuntu-latest'

# Time limit:
timeout-minutes: 3

# Define the sequence of job steps...
steps:
- uses: styfle/[email protected]

# Cancel existing workflow runs:
- name: 'Cancel existing workflow runs'
uses: styfle/[email protected]
with:
workflow_id: >-
benchmark.yml,
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/close_pull_requests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#/

# Workflow name:
name: Close Pull Requests
name: close_pull_requests

# Workflow triggers:
on:
Expand Down
28 changes: 24 additions & 4 deletions .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,22 +21,42 @@ name: examples

# Workflow triggers:
on:
# Allow the workflow to be manually run:
workflow_dispatch:

# Workflow jobs:
jobs:

# Define a job to run the package examples...
examples:

# Define display name:
name: 'Run examples'

# Define the type of virtual host machine on which to run the job:
runs-on: ubuntu-latest

# Define the sequence of job steps...
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2

# Checkout the repository:
- name: 'Checkout the repository'
uses: actions/checkout@v3

# Install Node.js:
- name: 'Install Node.js'
uses: actions/setup-node@v2
with:
node-version: 16
timeout-minutes: 5
- name: Install production and development dependencies

# Install dependencies:
- name: 'Install production and development dependencies'
run: |
npm install || npm install || npm install
timeout-minutes: 15
- name: Run examples

# Run examples:
- name: 'Run examples'
run: |
npm run examples
101 changes: 101 additions & 0 deletions .github/workflows/npm_downloads.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
#/
# @license Apache-2.0
#
# Copyright (c) 2022 The Stdlib Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#/

# Workflow name:
name: npm_downloads

# Workflow triggers:
on:
# Run this workflow weekly:
schedule:
# cron: '<minutes> <hours> <day_of_month> <month> <day_of_week>'
- cron: '0 8 * * 6'

# Allow the workflow to be manually run:
workflow_dispatch:

# Workflow jobs:
jobs:

# Define a job for retrieving npm download counts...
npm_downloads:

# Define display name:
name: 'Retrieve npm download counts'

# Define the type of virtual host machine on which to run the job:
runs-on: ubuntu-latest

# Define the sequence of job steps...
steps:
# Checkout the repository:
- name: 'Checkout repository'
uses: actions/checkout@v3
timeout-minutes: 10

# Install Node.js:
- name: 'Install Node.js'
uses: actions/setup-node@v2
with:
node-version: 16
timeout-minutes: 5

# Resolve package name:
- name: 'Resolve package name'
id: package_name
run: |
name=`node -e 'console.log(require("./package.json").name)' | tr -d '\n'`
echo "::set-output name=package_name::$name"
timeout-minutes: 5

# Fetch download data:
- name: 'Fetch data'
id: download_data
run: |
url="https://api.npmjs.org/downloads/range/$(date --date='1 year ago' '+%Y-%m-%d'):$(date '+%Y-%m-%d')/${{ steps.package_name.outputs.package_name }}"
echo "$url"
data=$(curl "$url")
mkdir ./tmp
echo "$data" > ./tmp/npm_downloads.json
echo "::set-output name=data::$data"
timeout-minutes: 5

# Upload the download data:
- name: 'Upload data'
uses: actions/upload-artifact@v2
with:
# Define a name for the uploaded artifact (ensuring a unique name for each job):
name: npm_downloads

# Specify the path to the file to upload:
path: ./tmp/npm_downloads.json

# Specify the number of days to retain the artifact (default is 90 days):
retention-days: 90
timeout-minutes: 10
if: success()

# Send data to events server:
- name: 'Post data'
uses: distributhor/workflow-webhook@v2
env:
webhook_url: ${{ secrets.STDLIB_NPM_DOWNLOADS_URL }}
webhook_secret: ${{ secrets.STDLIB_WEBHOOK_SECRET }}
data: '{ "downloads": ${{ steps.download_data.outputs.data }} }'
timeout-minutes: 5
if: success()
Loading

0 comments on commit f4819aa

Please sign in to comment.