An open API service indexing awesome lists of open source software.

https://github.com/zource-dev/action


https://github.com/zource-dev/action

Last synced: about 2 months ago
JSON representation

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]