Skip to content

Commit 74b743f

Browse files
committed
adjust main workflow
1 parent f5155b7 commit 74b743f

File tree

4 files changed

+26
-45
lines changed

4 files changed

+26
-45
lines changed

.github/workflows/example.yml

-40
This file was deleted.

.github/workflows/main.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Test
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: ['**']
8+
9+
jobs:
10+
build-simulator:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
15+
- name: Setup Node
16+
uses: actions/setup-node@v4
17+
with:
18+
cache: 'npm'
19+
20+
- name: Install dependencies
21+
run: npm install

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"license": "MIT",
88
"repository": {
99
"type": "git",
10-
"url": "git+https://github.com/your-username/action-ios.git"
10+
"url": "git+https://github.com/callstackincubator/ios.git"
1111
},
1212
"keywords": [
1313
"github-actions",
@@ -18,9 +18,9 @@
1818
"ci"
1919
],
2020
"bugs": {
21-
"url": "https://github.com/your-username/action-ios/issues"
21+
"url": "https://github.com/callstackincubator/ios/issues"
2222
},
23-
"homepage": "https://github.com/your-username/action-ios#readme",
23+
"homepage": "https://github.com/callstackincubator/ios#readme",
2424
"dependencies": {
2525
"@actions/core": "^1.11.1",
2626
"@actions/github": "^6.0.0",

0 commit comments

Comments
 (0)