Skip to content

Commit

Permalink
feat(actions): re add fixed CI action
Browse files Browse the repository at this point in the history
  • Loading branch information
pauliesnug committed Oct 30, 2023
1 parent f2c9eb2 commit 433e3ff
Show file tree
Hide file tree
Showing 3 changed files with 14,320 additions and 14,182 deletions.
16 changes: 15 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
@@ -1 +1,15 @@
[root = true]
# https://EditorConfig.org

# top-most EditorConfig file
root = true

[*]
charset = utf-8
end_of_line = lf
indent_size = 4
indent_style = tab
insert_final_newline = true
trim_trailing_whitespace = false

[{.*,*.md,*.json,*.toml,*.yml,}]
indent_style = space
124 changes: 124 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,124 @@
name: CI

on:
workflow_dispatch:
push:
branches:
- main
merge_group:
pull_request:
paths-ignore:
- '.vscode/**'
- '**/*.md'

concurrency:
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request_target' && github.head_ref || github.ref }}
cancel-in-progress: true
defaults:
run:
shell: bash

jobs:
build:
name: 'Build: ${{matrix.os}} (node@${{ matrix.NODE_VERSION }})'
runs-on: ${{ matrix.os }}
timeout-minutes: 5
strategy:
matrix:
OS: [ubuntu-latest, windows-latest]
NODE_VERSION: [18]
fail-fast: true
steps:
- name: disable git crlf
run: git config --global core.autocrlf false

- name: checkout
uses: actions/checkout@v4

- name: setup pnpm
uses: pnpm/action-setup@v2

- name: setup node@${{ matrix.NODE_VERSION }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.NODE_VERSION }}
cache: 'pnpm'

- name: install dependencies
run: pnpm install && pnpm install

- name: build packages
if: ${{ matrix.os == 'ubuntu-latest' && github.repository_owner == 'pulseflow' }}
run: pnpm build

lint:
name: 'Lint: ubuntu-latest (node@18)'
runs-on: ubuntu-latest
timeout-minutes: 7
needs: build
steps:
- name: disable git crlf
run: git config --global core.autocrlf false

- name: checkout
uses: actions/checkout@v4

- name: setup pnpm
uses: pnpm/action-setup@v2

- name: setup node
uses: actions/setup-node@v4
with:
node-version: 18
cache: 'pnpm'

- name: install dependencies
run: pnpm install && pnpm install

- name: build packages
run: pnpm build

- name: lint and format
run: pnpm lint

test:
name: 'Test: ${{matrix.os}} (node@${{ matrix.NODE_VERSION }})'
runs-on: ${{ matrix.os }}
timeout-minutes: 25
needs: build
strategy:
matrix:
OS: [ubuntu-latest]
NODE_VERSION: [18, 20]
include:
- os: macos-latest
NODE_VERSION: 18
- os: windows-latest
NODE_VERSION: 18
fail-fast: false
env:
NODE_VERSION: ${{ matrix.NODE_VERSION }}
steps:
- name: disable git crlf
run: git config --global core.autocrlf false

- name: checkout
uses: actions/checkout@v4

- name: setup pnpm
uses: pnpm/action-setup@v2

- name: setup node@${{ matrix.NODE_VERSION }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.NODE_VERSION }}
cache: 'pnpm'

- name: install dependencies
run: pnpm install && pnpm install

- name: build packages
run: pnpm run build

- name: test
run: pnpm test
Loading

0 comments on commit 433e3ff

Please sign in to comment.