Merge pull request #778 from yutailang0119/dependabot/github_actions/… #1575
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-test' | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4.0.0 | |
- run: | | |
npm install | |
- run: | | |
npm run all | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4.0.0 | |
- uses: ./ | |
with: | |
report-path: ${{ github.workspace }}/__tests__/resource/lint-results.xml | |
continue-on-error: true |