Skip to content

Commit

Permalink
Add CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
ddaspit committed Oct 30, 2024
1 parent 0984d2f commit 032ea36
Show file tree
Hide file tree
Showing 10 changed files with 517 additions and 80 deletions.
1 change: 1 addition & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ insert_final_newline = true
indent_style = space
indent_size = 2
max_line_length = 120
end_of_line = lf
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto eol=lf
22 changes: 22 additions & 0 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: CI Build

on:
push:
branches:
- '**'
tags:
- 'v*'

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: volta-cli/action@v4
- run: npm ci
- run: npm run build
- run: npm run lint
- run: npm run format:check
- run: npm run check-types
- run: npm run coverage
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ node_modules/
dist/
*.tsbuildinfo
.turbo/
coverage/
Loading

0 comments on commit 032ea36

Please sign in to comment.