replace Travis with GitHub Actions worklfow

This commit is contained in:
Matthias Kretschmann 2021-01-31 18:00:08 +01:00
parent 1792832cd6
commit 628305faf8
Signed by: m
GPG Key ID: 606EEEF3C479A91F
6 changed files with 2899 additions and 19 deletions

View File

@ -3,6 +3,5 @@ updates:
- package-ecosystem: npm
directory: "/"
schedule:
interval: daily
interval: weekly
time: '04:00'
open-pull-requests-limit: 10

24
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,24 @@
name: 'CI'
on:
push:
branches:
- main
pull_request:
branches:
- '**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
- run: npm ci
- run: npm test

3
.gitignore vendored
View File

@ -1,3 +1,2 @@
node_modules
yarn.lock
package-lock.json
yarn.lock

View File

@ -1,13 +0,0 @@
language: node_js
node_js: node
notifications:
email: false
slack:
template:
- "`%{repository_slug}#%{branch}`"
- "*%{result}* build (<%{build_url}|#%{build_number}>) for <%{compare_url}|%{commit}>"
- "Execution time: *%{duration}*"
- "Message: %{message}"
rooms:
- secure: r6kVJw3zS4raTXgeBEYZYO/5YawnLoi1vO4zG3obhcNFRLm9FxlzuXfulFhjQA4viPQUW07m5UGud4bPTrDIAE35GUcLRlyisH/odahgsrmqLrBvz9CB+/V5WrEsCGpE9G3I/y5JGSRavjs+5qfVqJZaAI9Ox7bCcw+Msa5r/p7/yJw5di4EzgNLFWQswyio0zeOdjtCYgqpngWtLGpn0ksSwqNyqp/kntoHSz4nDdO/6GWS1q5K9mOfGMXr/wwiYuQrgDPpygRWETy9F8qh9yH2cseJmCZaXvSTSU1L9yV01qrBP5zDTTM2jPUGMQKY4JBoxFtU29G1BLWGAgMW9ymKe9V+f8FgbirZ+O1Vp87QAZPJXx5kO+pgqBtGewoYfp0k9HJ5xQAhr83l82w8BAEHVS3G/Y7cKKK9QNH9Z6gpdx6Y3s9YkpGqkv79MRvZo0tJV+XTOldCCfUFVxXXuZofuswWGUgt2h9qNoFY+AZc0G1TV/XVDHbDm32JNiGkuk+uO83HT9VI7G5PRWNcD8kP7ZS6XThiU2qOGr4OPGggmpFpJ7Yqc3LNFOjhFunKSzGOrZrc0GLZAbAR7qHkWNpiqQQ/RSpfnXfbPlAIJY6w5Vuzh9KhIIPkbWdP89Bc2Kw+W+ACFjStO7s298/8dty44EvJ2TS9CCjOhYtgaxk=

View File

@ -1,7 +1,6 @@
# hyper-mac-pro
[![Build Status](https://travis-ci.com/kremalicious/hyper-mac-pro.svg?branch=master)](https://travis-ci.com/kremalicious/hyper-mac-pro)
[![Dependabot enabled](https://badgen.net/dependabot/thepracticaldev/dev.to?icon=dependabot)](https://dependabot.com/)
[![Build Status](https://github.com/kremalicious/portfolio/workflows/CI/badge.svg)](https://github.com/kremalicious/hyper-mac-pro/actions)
[![npm version](https://img.shields.io/npm/v/hyper-mac-pro.svg)](https://www.npmjs.com/package/hyper-mac-pro)
Tab style for [Hyper](https://hyper.is/) inspired by Apple's pro apps on macOS.

2872
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff