generated from amosproj/amos202Xss0Y-projname
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from amosproj/feat/xd-10
feat: Add GitHub Pipelines (#10)
- Loading branch information
Showing
7 changed files
with
96 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
name: Lint Test Build | ||
on: | ||
push: | ||
branches: | ||
- develop | ||
pull_request: | ||
branches: | ||
- develop | ||
|
||
jobs: | ||
install-deps: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- uses: pnpm/action-setup@v2 | ||
with: | ||
version: 8.15.1 | ||
|
||
# Connect your workspace on nx.app and uncomment this to enable task distribution. | ||
# The "--stop-agents-after" is optional, but allows idle agents to shut down once the "e2e-ci" targets have been requested | ||
- run: pnpm exec nx-cloud start-ci-run --distribute-on="5 linux-medium-js" --stop-agents-after="e2e-ci" | ||
|
||
# Cache node_modules | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 22.x | ||
cache: 'pnpm' | ||
|
||
- name: PNPM install based on lockfile | ||
run: pnpm install --frozen-lockfile | ||
|
||
lint: | ||
runs-on: ubuntu-latest | ||
needs: install-deps | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 1 | ||
|
||
- run: git fetch --no-tags --prune --depth=1 origin develop | ||
|
||
- name: Cache node modules | ||
uses: actions/cache@v4 | ||
with: | ||
path: node_modules | ||
key: cache-node-modules-${{ hashFiles('pnpm-lock.json') }} | ||
|
||
- run: npx nx affected --target=lint --parallel=3 --base=origin/develop | ||
|
||
test: | ||
runs-on: ubuntu-latest | ||
needs: install-deps | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 1 | ||
|
||
- run: git fetch --no-tags --prune --depth=1 origin develop | ||
|
||
- name: Cache node modules | ||
uses: actions/cache@v4 | ||
with: | ||
path: node_modules | ||
key: cache-node-modules-${{ hashFiles('pnpm-lock.json') }} | ||
|
||
- run: npx nx affected --target=test --parallel=3 --configuration=ci --base=origin/develop | ||
|
||
build: | ||
runs-on: ubuntu-latest | ||
needs: install-deps | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 1 | ||
|
||
- run: git fetch --no-tags --prune --depth=1 origin develop | ||
|
||
- name: Cache node modules | ||
uses: actions/cache@v4 | ||
with: | ||
path: node_modules | ||
key: cache-node-modules-${{ hashFiles('pnpm-lock.json') }} | ||
|
||
- run: npx nx affected --target=build --parallel=3 --configuration=ci --base=origin/develop |
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters