Skip to content

Commit

Permalink
Merge branch 'master' of github.com:thelounge/thelounge-theme-zenburn
Browse files Browse the repository at this point in the history
  • Loading branch information
richrd committed Dec 31, 2019
2 parents 6b94730 + 07e1e9b commit 9bbf4cf
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 22 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Build

on: [push, pull_request]

jobs:
build:
name: Build and test

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@master

- name: Setup Node.js
uses: actions/setup-node@v1

- name: Install
run: yarn --frozen-lockfile --non-interactive

- name: Test
run: yarn test
27 changes: 27 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Release

on:
push:
tags: v*

jobs:
release:
name: Release workflow

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@master

- name: Setup Node.js
uses: actions/setup-node@v1
with:
registry-url: 'https://registry.npmjs.org/'

- name: Install
run: yarn --frozen-lockfile --non-interactive

- name: Publish
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
19 changes: 0 additions & 19 deletions .travis.yml

This file was deleted.

3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@
<a href="https://yarn.pm/thelounge-theme-zenburn"><img
alt="npm version"
src="https://img.shields.io/npm/v/thelounge-theme-zenburn.svg?style=flat-square"></a>
<a href="https://travis-ci.com/thelounge/thelounge-theme-zenburn"><img
alt="Travis CI Build Status"
src="https://img.shields.io/travis/com/thelounge/thelounge-theme-zenburn/master.svg?&style=flat-square"></a>
<a href="https://npm-stat.com/charts.html?package=thelounge-theme-zenburn&from=2016-02-12"><img
alt="Total downloads on npm"
src="https://img.shields.io/npm/dt/thelounge-theme-zenburn.svg?colorB=007dc7&style=flat-square"></a>
Expand Down

0 comments on commit 9bbf4cf

Please sign in to comment.