From 3a5cca2df2b41b19497d2802998630fa276757d5 Mon Sep 17 00:00:00 2001 From: web3-bot Date: Wed, 13 Nov 2024 01:57:05 +0000 Subject: [PATCH] chore: add or force update .github/workflows/js-test-and-release.yml --- .github/workflows/js-test-and-release.yml | 28 +++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/js-test-and-release.yml diff --git a/.github/workflows/js-test-and-release.yml b/.github/workflows/js-test-and-release.yml new file mode 100644 index 00000000..28068134 --- /dev/null +++ b/.github/workflows/js-test-and-release.yml @@ -0,0 +1,28 @@ +name: test & maybe release + +on: + push: + branches: + - main + pull_request: + workflow_dispatch: + +permissions: + contents: write + id-token: write + packages: write + pull-requests: write + +concurrency: + group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.event_name == 'push' && github.sha || github.ref }} + cancel-in-progress: true + +jobs: + js-test-and-release: + uses: ipdxco/unified-github-workflows/.github/workflows/js-test-and-release.yml@v1.0 + secrets: + DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }} + DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} + NPM_TOKEN: ${{ secrets.NPM_TOKEN }} + UCI_GITHUB_TOKEN: ${{ secrets.UCI_GITHUB_TOKEN }} + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}