Skip to content

Commit

Permalink
🔖 0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
a-tokyo committed Jan 26, 2023
1 parent 7373145 commit 57008b3
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 18 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/test-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,19 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Get yarn cache
id: yarn-cache
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ubuntu-latest-node-14.x-yarn-${{ hashFiles('**/yarn.lock') }}
key: ubuntu-latest-node-16.x-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
ubuntu-latest-node-14.x-yarn-
- uses: actions/setup-node@v2
ubuntu-latest-node-16.x-yarn-
- uses: actions/setup-node@v3
with:
node-version: 14.x
node-version: 16.x
registry-url: https://registry.npmjs.org/
- name: Install
run: yarn install --frozen-lockfile
Expand All @@ -40,19 +40,19 @@ jobs:
if: success() && github.ref == 'refs/heads/main'

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Get yarn cache
id: yarn-cache
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ubuntu-latest-node-14.x-yarn-${{ hashFiles('**/yarn.lock') }}
key: ubuntu-latest-node-16.x-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
ubuntu-latest-node-14.x-yarn-
- uses: actions/setup-node@v2
ubuntu-latest-node-16.x-yarn-
- uses: actions/setup-node@v3
with:
node-version: 14.x
node-version: 16.x
registry-url: https://registry.npmjs.org/
- name: Install
run: yarn install --frozen-lockfile
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
version: ${{ steps.ownEnvVars.outputs.PACKAGE_VERSION }}
draft: false
- name: Slack Notification - NPM release
uses: rtCamp/action-slack-notify@v2.0.0
uses: rtCamp/action-slack-notify@v2
env:
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_RELEASE_BOT_PUBLIC }}
SLACK_USERNAME: 'npmBot'
Expand Down
6 changes: 1 addition & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

🎨 How plural paints its styles.

[![npm version](https://badge.fury.io/js/stylelint-config-plural.svg)](https://badge.fury.io/js/stylelint-config-plural) [![Test Release Publish](https://github.com/pluralcom/stylelint-config-plural/actions/workflows/test-publish.yml/badge.svg)](https://github.com/pluralcom/stylelint-config-plural/actions/workflows/test-publish.yml)> The standard shareable config for Stylelint.
[![npm version](https://badge.fury.io/js/stylelint-config-plural.svg)](https://badge.fury.io/js/stylelint-config-plural) [![Test Release Publish](https://github.com/pluralcom/stylelint-config-plural/actions/workflows/test-publish.yml/badge.svg)](https://github.com/pluralcom/stylelint-config-plural/actions/workflows/test-publish.yml)

Extends [`stylelint-config-standard`](https://github.com/stylelint/stylelint-config-standard).

Expand Down Expand Up @@ -187,7 +187,3 @@ You can make sure this module lints with itself using `npm run lint`.
<hr>

This Package is being maintained by [plural](https://plural.com)

Built with ❤️ in California

# };

0 comments on commit 57008b3

Please sign in to comment.