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

test npm installer every 6 hours #1482

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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