Skip to content

Commit a1e2730

Browse files
Add precomitconfig and codeowners files and update filename to test
1 parent cf57334 commit a1e2730

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @splitio/sdk

.github/workflows/ci-cd.yml renamed to .github/workflows/test.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,20 @@
1-
name: ci-cd
1+
name: test
22
on:
33
pull_request:
44
branches:
55
- '*'
66

77
concurrency:
8-
group: ${{ github.workflow }}-${{ github.event_name == 'push' && github.run_number || github.event.pull_request.number }}
8+
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
99
cancel-in-progress: true
1010

11-
permissions:
12-
contents: read
13-
id-token: write
14-
1511
jobs:
1612
build:
1713
name: Build
1814
runs-on: ubuntu-latest
1915
steps:
2016
- name: Checkout code
21-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
2218

2319
- name: Setup Node.js
2420
uses: actions/setup-node@v4

.pre-commit-config.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
repos:
2+
- repo: https://github.com/pre-commit/pre-commit-hooks
3+
rev: v6.0.0
4+
hooks:
5+
- id: check-added-large-files
6+
- id: check-json
7+
- id: check-yaml
8+
- id: end-of-file-fixer
9+
- id: trailing-whitespace

0 commit comments

Comments
 (0)