This repository has been archived by the owner on Sep 17, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix(craft): add gh provider * fix(ci): move bindings so they are easier to pack * fix(ci): move bindings so they are easier to pack
- Loading branch information
Showing
6 changed files
with
47 additions
and
6 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 |
---|---|---|
|
@@ -6,3 +6,5 @@ changelogPolicy: auto | |
targets: | ||
- name: npm | ||
access: public | ||
- name: github | ||
tagPrefix: v |
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,33 @@ | ||
name: 'Build & Test' | ||
on: | ||
push: | ||
branches: | ||
- 'release/*' | ||
pull_request: | ||
workflow_dispatch: | ||
inputs: | ||
commit: | ||
description: If the commit you want to test isn't the head of a branch, provide its SHA here | ||
required: false | ||
jobs: | ||
artifacts: | ||
name: Upload Artifacts | ||
needs: [build] | ||
runs-on: ubuntu-latest | ||
# Build artifacts are only needed for releasing workflow. | ||
if: startsWith(github.ref, 'refs/heads/release/') | ||
steps: | ||
- name: Check out current commit | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ env.HEAD_COMMIT }} | ||
- name: Lint, | ||
run: npm run lint | ||
- name: Test | ||
run: npm run test | ||
- name: build | ||
run: npm run build:lib | ||
- name: Archive artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: ${{ github.sha }} |
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
File renamed without changes.
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
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