Skip to content

Commit

Permalink
chore(): add CI script
Browse files Browse the repository at this point in the history
  • Loading branch information
Heliks committed Jun 14, 2024
1 parent fc8dd8d commit 16b4b79
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 3 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/verify.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Verify
on: push
jobs:
verify:
name: Verify Code
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v2-beta
with:
node-version: '18'
- name: Install
run: |
npm install -g pnpm
pnpm install
- name: Build Packages
run: pnpm build
- name: Unit tests
run: pnpm test
6 changes: 3 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Implementation of the [flexbox](https://www.w3.org/TR/css-flexbox-1) algorithm in typescript. Most major features are
implemented. I do not plan to cover stuff like aspect ratios.
Implementation of the [flexbox](https://www.w3.org/TR/css-flexbox-1) algorithm in typescript. Although some features
are still missing, most major features should be implemented.

Missing planed features:
Missing:

- [ ] min/max size constraints
- [ ] position: absolute
Expand Down

0 comments on commit 16b4b79

Please sign in to comment.