Skip to content

Commit 818a787

Browse files
committed
Merge branch 'release-0.2.2'
2 parents 93b4606 + 81cb5e3 commit 818a787

File tree

7 files changed

+59
-33
lines changed

7 files changed

+59
-33
lines changed

.github/workflows/lint.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Lint
2+
3+
on:
4+
push:
5+
branches:
6+
- '**'
7+
tags-ignore:
8+
- '**'
9+
pull_request:
10+
branches:
11+
- '**'
12+
13+
jobs:
14+
lint:
15+
runs-on: ubuntu-18.04
16+
steps:
17+
- uses: actions/checkout@v2
18+
19+
- name: Setup Node.js
20+
uses: actions/setup-node@v1
21+
with:
22+
node-version: '14'
23+
24+
- name: Install Node.js package dependencies
25+
run: npm install
26+
27+
- name: Lint
28+
run: npm test

.github/workflows/npm-publish.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Publish to npm registry
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*.*.*'
7+
8+
jobs:
9+
publish:
10+
name: Publish to npm registry
11+
runs-on: ubuntu-18.04
12+
13+
steps:
14+
- uses: actions/checkout@v2
15+
16+
- name: Setup Node.js
17+
uses: actions/setup-node@v1
18+
with:
19+
node-version: '14'
20+
registry-url: 'https://registry.npmjs.org'
21+
always-auth : true
22+
23+
- name: Publish
24+
run: npm publish --access public
25+
env:
26+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

.travis.yml

Lines changed: 0 additions & 30 deletions
This file was deleted.

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,8 @@ Small patches and bug reports can be submitted a issue tracker in Github. Forkin
177177

178178
## Changelog
179179

180+
* Version 0.2.2
181+
* remove .travis.yml, change CI/CD to GitHub Actions
180182
* Version 0.2.1
181183
* auto release to npm only version tags
182184
* gulp bump up version to 4.0

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "flexbox-grid-mixins",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"description": "Sass Mixins to generate Flexbox grid",
55
"main": "sass/_flexbox-grid-mixins.scss",
66
"author": "Thingsym",

sass/_flexbox-grid-mixins.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// ===================================================================
22
// Flexbox Grid Mixins
3-
// Version 0.2.1
3+
// Version 0.2.2
44
// Description: Sass Mixins to generate Flexbox grid
55
// Author: thingsym
66
// GitHub: https://github.com/thingsym/flexbox-grid-mixins

0 commit comments

Comments
 (0)