-
Notifications
You must be signed in to change notification settings - Fork 565
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add deployment monitoring via github actions
- Loading branch information
1 parent
b23fb5b
commit 0bfa0d7
Showing
1 changed file
with
80 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
name: Deployment Tests | ||
|
||
on: | ||
push: | ||
paths: | ||
- '.github/workflows/deployment-monitor.yml' | ||
schedule: | ||
- cron: '0 */2 * * *' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
monitor_cdn: | ||
name: CDN deployment | ||
runs-on: ${{ matrix.os }}-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu] | ||
base_url: [static.snyk.io, downloads.snyk.io] | ||
channel: [stable, preview] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install dependencies | ||
run: sudo apt update && sudo apt install -y curl | ||
- name: Install Snyk | ||
run: | | ||
rm -f ./snyk | ||
curl --retry 2 -L -v --compressed https://${{ matrix.base_url }}/cli/${{ matrix.channel }}/snyk-linux -o ./snyk-linux | ||
curl --retry 2 -L -v --compressed https://${{ matrix.base_url }}/cli/${{ matrix.channel }}/snyk-linux.sha256 -o ./snyk-linux.sha256 | ||
echo --- Content shasum file --- | ||
cat snyk-linux.sha256 | ||
echo --- Shasum binary --- | ||
sha256sum snyk-linux | ||
chmod +x ./snyk-linux | ||
echo --- CLI version --- | ||
./snyk-linux --version | ||
echo --- Shasum comparison --- | ||
sha256sum -c snyk-linux.sha256 | ||
- name: Run snyk --version | ||
run: ./snyk-linux --version | ||
|
||
|
||
monitor_homebrew: | ||
name: Homebrew deployment | ||
runs-on: ${{ matrix.os }}-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ macos ] | ||
steps: | ||
- name: Install Snyk | ||
run: | | ||
brew tap snyk/tap | ||
brew install snyk | ||
- name: Run snyk --version | ||
run: snyk --version | ||
|
||
monitor_scoop: | ||
name: Scoop deployment | ||
runs-on: windows-latest | ||
steps: | ||
- name: Install Scoop and Snyk | ||
run: | | ||
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser | ||
Invoke-RestMethod -Uri https://get.scoop.sh | Invoke-Expression | ||
scoop bucket add snyk https://github.com/snyk/scoop-snyk | ||
scoop install snyk | ||
snyk --version | ||
monitor_npm: | ||
name: npm deployment | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: latest | ||
- name: Install Snyk | ||
run: | | ||
npm install -g snyk | ||
snyk --version |