Skip to content

Commit

Permalink
feat: Add basic Github Actions workflow and clean up index (#2)
Browse files Browse the repository at this point in the history
* add basic publish workflow and clean up

* add unit test job

---------

Co-authored-by: Banks Nussman <banks@nussman.us>
  • Loading branch information
bnussman-akamai and bnussman authored Oct 31, 2023
1 parent 1b7f556 commit f3f93b1
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 4 deletions.
72 changes: 72 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
name: Publish

on:
push:
branches:
- 'main'

jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: latest
- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Install Dependencies
run: bun install
- name: Test
run: bun run test
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: latest
- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Install Dependencies
run: bun install
- name: Build
run: bun run build
- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
name: dist
path: dist/
publish:
name: Publish to NPM
needs: ["build"]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: latest
- name: Download artifacts
uses: actions/download-artifact@v2
with:
name: dist
path: dist/
- name: Publish to NPM
continue-on-error: true
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
npm config set //registry.npmjs.org/:_authToken ${NPM_TOKEN}
npm publish --access public
6 changes: 2 additions & 4 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import { noCustomFontWeight } from './rules/no-custom-fontWeight';

module.exports = {
rules: {
'no-custom-fontWeight': noCustomFontWeight,
},
export const rules = {
'no-custom-fontWeight': noCustomFontWeight,
};

0 comments on commit f3f93b1

Please sign in to comment.