Skip to content

Commit

Permalink
gh actions
Browse files Browse the repository at this point in the history
  • Loading branch information
naltatis committed Mar 1, 2024
1 parent 86cfd7a commit d220169
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 4 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI

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

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: "21"

- name: Install dependencies
run: npm install

- name: Run Linter
run: npm run lint
15 changes: 11 additions & 4 deletions app.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
"orientation": "default",
"icon": "./assets/icon-dark.png",
"userInterfaceStyle": "automatic",
"assetBundlePatterns": ["**/*"],
"assetBundlePatterns": [
"**/*"
],
"ios": {
"splash": {
"image": "./assets/splash-light.png",
Expand All @@ -26,12 +28,15 @@
"NSAppTransportSecurity": {
"NSAllowsArbitraryLoads": true
},
"NSBonjourServices": ["_http._tcp.", "_https._tcp."]
"NSBonjourServices": [
"_http._tcp.",
"_https._tcp."
]
},
"config": {
"usesNonExemptEncryption": false
},
"buildNumber": "3"
"buildNumber": "4"
},
"android": {
"permissions": [
Expand All @@ -45,7 +50,9 @@
"favicon": "./assets/favicon.png",
"build": {
"babel": {
"include": ["@ui-kitten/components"]
"include": [
"@ui-kitten/components"
]
}
}
},
Expand Down

0 comments on commit d220169

Please sign in to comment.