Misc tests #676
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
on: | |
issue_comment: | |
types: [created] | |
jobs: | |
regression_testing_job: | |
if: ${{ startsWith(github.event.comment.body, 'run') }} | |
runs-on: ubuntu-latest | |
name: a job for regression testing | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
submodules: true | |
- uses: actions/setup-node@v3 | |
with: | |
node-version-file: "package.json" | |
- name: configure git | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "GitHub Actions" | |
- run: npm ci | |
- run: npm run build | |
- name: main action | |
uses: ./.github/actions/main | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |