Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnyomair committed Dec 3, 2024
1 parent d97c1a7 commit 7fa2019
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 23 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/lint-create-app.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Lint
name: Lint create-app

on:
pull_request:
Expand Down Expand Up @@ -36,14 +36,11 @@ jobs:
cache-dependency-path: "create-app/package-lock.json"
registry-url: "https://registry.npmjs.org"

- name: Change directory
run: cd create-app

- name: Install dependencies
run: npm install
run: npm --prefix create-app install

- name: Lint
run: npm run lint
run: npm --prefix create-app run lint

- name: Build
run: npm run build
run: npm --prefix create-app run build
16 changes: 8 additions & 8 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name: Lint

on:
pull_request:
types:
- opened
- synchronize
- reopened
branches:
- main
- next
# pull_request:
# types:
# - opened
# - synchronize
# - reopened
# branches:
# - main
# - next
push:
branches:
- main
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name: Test

on:
pull_request:
types:
- opened
- synchronize
- reopened
branches:
- main
- next
# pull_request:
# types:
# - opened
# - synchronize
# - reopened
# branches:
# - main
# - next
push:
branches:
- main
Expand Down

0 comments on commit 7fa2019

Please sign in to comment.