Skip to content

Commit

Permalink
Merge branch 'release/1.1.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubmikita committed Oct 21, 2021
2 parents feb2b2f + e4a4840 commit c706db3
Show file tree
Hide file tree
Showing 20 changed files with 9,634 additions and 4,089 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ jobs:
with:
node-version: 14
registry-url: https://registry.npmjs.org/
- run: yarn install
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
24 changes: 18 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Test

on: ['push', 'pull_request']
on: push

jobs:
ESlint:
Expand All @@ -11,9 +11,21 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '13'
node-version: 14
- name: Install dependencies
run: npm install
- name: ESlint
run: |
npm install
npm run lint
npm run test
run: npm run lint
Test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: 14
- name: Install dependencies
run: npm install
- name: Jest
run: npm run test
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
/vendor/
node_modules
dist
coverage

### Windows ###
# Windows image file caches
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Changelog
All notable changes to this project will be documented in this file.

## 1.1.0

* [Added] Eslint config for Jest
* [Changed] Upgraded all dependencies
* [Fixed] Sass divisions

## 1.0.1

* [Added] Dart-sass compatibility
Expand Down
17 changes: 0 additions & 17 deletions coverage/clover.xml

This file was deleted.

2 changes: 0 additions & 2 deletions coverage/coverage-final.json

This file was deleted.

224 changes: 0 additions & 224 deletions coverage/lcov-report/base.css

This file was deleted.

79 changes: 0 additions & 79 deletions coverage/lcov-report/block-navigation.js

This file was deleted.

Binary file removed coverage/lcov-report/favicon.png
Binary file not shown.
Loading

0 comments on commit c706db3

Please sign in to comment.