Skip to content
This repository has been archived by the owner on Aug 3, 2023. It is now read-only.

Commit

Permalink
test npm installer every 6 hours
Browse files Browse the repository at this point in the history
  • Loading branch information
EverlastingBugstopper committed Aug 6, 2020
1 parent 6d83f39 commit 2ac5399
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/install.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Installation

on:
schedule:
# this must be quoted because * is special char
# this runs every 6 hours
# see https://crontab.guru/#0_*/6_*_*_*
- cron: '0 */6 * * *'

jobs:
npm:
name: Install from npm
runs-on: ${{ matrix.os }}
strategy:
matrix:
target:
[
linux,
macos,
windows,
]
include:
- target: linux
os: ubuntu-latest
- target: macos
os: macos-latest
- target: windows
os: windows-latest

steps:
- name: Install Node
uses: actions/setup-node@v1

- name: Install Wrangler
run: npm install -g @cloudflare/wrangler

0 comments on commit 2ac5399

Please sign in to comment.