https://github.com/zource-dev/action
https://github.com/zource-dev/action
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/zource-dev/action
- Owner: zource-dev
- License: apache-2.0
- Created: 2024-03-10T18:18:28.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2025-08-06T02:42:56.000Z (8 months ago)
- Last Synced: 2025-10-11T02:12:49.757Z (6 months ago)
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Node.js CI/CD workflow
### Usage example
```yaml
name: Example Usage
on: [push, pull_request]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Run CI/CD Pipeline
uses: zource-dev/action@v1
with:
node_version: '20.x'
github_token: ${{ secrets.GITHUB_TOKEN }}
autoupdate: minor
username: Github
email: github@github.com
npm_token: ${{ secrets.NPM_TOKEN }}
codecov_token: ${{ secrets.CODECOV_TOKEN }}
build: |
pnpm codegen
pnpm build
test: |
pnpm lint
pnpm test
```
### License (MIT)[./LICENSE]