Skip to content

Commit

Permalink
ci: new workflow actions in ci.yaml (#2)
Browse files Browse the repository at this point in the history
ci: new workflow actions in ci.yaml
  • Loading branch information
gerzon05 authored Mar 19, 2024
2 parents 5443bb5 + cdc54ef commit 08a00b3
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 5 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Ci with Github Actions

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v3
with:
version: 8
- uses: actions/setup-node@v3
with:
node-version: 20.x
cache: pnpm
- run: pnpm install
- run: pnpm run lint
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,12 @@ This is the source code for https://desing-system.dev by Open Land
## Getting Started

<img src="./resources/preview.png" alt="Open Land logo" align="right" width="300">
This design system is totally easy to use with the aim of facilitating upcoming new projects. The design system is a challenge for our team. You can gladly contribute and guide us with ideas to improve.
This design system is totally easy to use with the aim of facilitating upcoming new projects. The design system is a challenge for our team. You can gladly contribute and guide us with ideas to improve... We would be keen to hear any feedback on this project.

<br>
<br>
<br>
<br>

## Components

Expand All @@ -30,13 +31,13 @@ _General_
- [ ] Button
- [ ] Typography
- [ ] Icon
- [ ] Image (work in progress)
- [ ] Image

_Data Input_

- [ ] Input
- [ ] InputNumber
- [ ] Select (custom select wip)
- [ ] Select
- [ ] Checkbox
- [ ] Radio
- [ ] Toggle
Expand All @@ -49,7 +50,6 @@ _Data Input_
_Layout_

- [ ] Divider
- [ ] Space (Flex)

_Display_

Expand Down Expand Up @@ -95,4 +95,3 @@ Design System is licensed under either of

- MIT license (LICENSE-MIT or https://opensource.org/licenses/MIT)

We would be keen to hear any feedback on this project.

0 comments on commit 08a00b3

Please sign in to comment.