Skip to content

Commit

Permalink
(chore): Define github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
MaximusHaximus committed Mar 27, 2024
1 parent 466db5a commit e50f0e3
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#Default reviewers
* @maximushaximus
25 changes: 25 additions & 0 deletions .github/workflows/_setup_env.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Configure environment
on:
workflow_call:

jobs:
setup:
name: Setup environment
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Install PNPM
uses: pnpm/action-setup@v2
with:
version: 6.32.9
- name: Checkout repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'pnpm'
- name: Install project dependencies
run: pnpm install
27 changes: 27 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: lint
on:
pull_request:
branches:
- main
push:
branches:
- main

jobs:
lint:
name: "Lint"
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: ./.github/workflows/_setup_env.yml
- name: Lint
run: pnpm lint
tests:
needs: 'lint'
name: 'Tests'
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: ./.github/workflows/_setup_env.yml
- name: Run tests
run: pnpm test

0 comments on commit e50f0e3

Please sign in to comment.