Skip to content

Commit

Permalink
Merge pull request #21 from ivanblazevic/release-process
Browse files Browse the repository at this point in the history
Release process
  • Loading branch information
ivanblazevic authored Mar 27, 2021
2 parents 08a80ea + 02b1f27 commit e8dc1ff
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 8 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/blank.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: CI

on: [push, pull_request]

jobs:
build:
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest]

steps:
- name: Build & Test
uses: actions/checkout@v2.1.0
- run: npm ci
- run: npm test

- name: NPM Publish
if: "contains(github.ref, 'refs/tags/')"
uses: JS-DevTools/npm-publish@v1
with:
token: ${{ secrets.NPM_TOKEN }}
6 changes: 0 additions & 6 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ngx-unused-css",
"version": "2.2.2",
"version": "2.2.12",
"description": "Detect unused CSS in angular components",
"main": "dist/index.js",
"scripts": {
Expand Down

0 comments on commit e8dc1ff

Please sign in to comment.