feat(eslint): add linting rules for testing #1
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
name: Create Release | |
on: | |
push: | |
branches: | |
- develop | |
jobs: | |
release-please: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [18.19.x] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: release-please--branches--develop--components--daffodil | |
token: ${{ secrets.GRAYCORE_GITHUB_TOKEN }} | |
- uses: graycoreio/github-actions/setup-node@main | |
with: | |
node-version: ${{ matrix.node }} | |
use-stamp-cache: true | |
- uses: google-github-actions/release-please-action@v3 | |
with: | |
token: ${{ secrets.GRAYCORE_GITHUB_TOKEN }} | |
command: manifest | |
default-branch: develop | |
- name: Add Packages to README | |
run: | | |
git fetch | |
git reset --hard release-please--branches--develop--components--daffodil | |
git config user.name "GrayBot" | |
git config user.email "[email protected]" | |
cd tools/release | |
npx gulp addPackagesToReadme | |
git add ../../README.md | |
git commit -m 'docs: autogenerate package table in README' || true | |
git push |