-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #416 from CCALI/develop
LHI contract
- Loading branch information
Showing
51 changed files
with
1,532 additions
and
1,076 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: build-test | ||
run-name: ${{ github.actor }} is testing the author build | ||
on: [push] | ||
jobs: | ||
test-author-build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: '16' | ||
- run: npm install -g grunt-cli | ||
- run: npm run deploy | ||
- uses: GabrielBB/xvfb-action@v1 | ||
with: | ||
run: npm run test | ||
- uses: "8398a7/action-slack@v3" | ||
with: | ||
status: ${{ job.status }} | ||
fields: "repo,message,commit,author,action,eventName,ref,workflow,job,took,pullRequest" | ||
env: | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | ||
if: always() # Pick up events even if the job fails or is canceled. | ||
|
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.