chore(deps-dev): bump prettier from 2.8.8 to 3.5.0 #185
Workflow file for this run
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: 'Build and Integration Test' | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: # make sure build/ci work properly | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: npm install | |
- run: npm run all | |
test: # make sure the action works on a clean machine without building | |
permissions: | |
contents: write | |
pull-requests: write | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Integration test | |
uses: ./ | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
pre-release: true | |
develop-branch: beta | |
version-files: README.md package.json | |
release-title: Release Automation Action Beta | |
separator: '.beta.test' | |
enable-auto-merge: 0 |