Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
MaSch0212 committed Nov 18, 2023
2 parents 02c2833 + ed3890b commit 0edb13b
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: CI

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

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/[email protected]
- name: Use Node.js 18.x
uses: actions/[email protected]
with:
node-version: 18.x
- name: Setup pnpm
uses: pnpm/[email protected]
with:
version: 8.6.12
- name: Install
run: pnpm i
- name: Build
run: pnpm run build
- name: Lint
run: pnpm run lint
- name: Test
run: pnpm run test
env:
FORCE_COLOR: 1
# - name: Publish Unit Test Results
# uses: EnricoMi/publish-unit-test-result-action@v1
# if: always()
# with:
# files: junit.xml

0 comments on commit 0edb13b

Please sign in to comment.