Skip to content

Commit

Permalink
feat: support aliases to style objects (#2)
Browse files Browse the repository at this point in the history
Co-authored-by: Jon Ambas <[email protected]>
  • Loading branch information
jonambas and Jon Ambas authored Apr 5, 2024
1 parent 957a621 commit b77e472
Show file tree
Hide file tree
Showing 14 changed files with 649 additions and 49 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Build

on:
push:
branches:
- main
pull_request:

jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 30

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20

- name: Install dependencies
run: npm ci

- name: Build
run: npm run build
27 changes: 27 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Test

on:
push:
branches:
- main
pull_request:

jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 30

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20

- name: Install dependencies
run: npm ci

- name: Test
run: npm run test:ci
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/node_modules
/dist
/app
/app
/coverage
3 changes: 2 additions & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
"useTabs": false,
"trailingComma": "all",
"bracketSpacing": true,
"singleQuote": true
"singleQuote": true,
"semi": true
}
Loading

0 comments on commit b77e472

Please sign in to comment.