From 1810233e10ea1468f35136503e553c4096d499ad Mon Sep 17 00:00:00 2001 From: lukachi Date: Thu, 7 Mar 2024 17:59:19 +0200 Subject: [PATCH] add test workflow --- .github/workflows/test.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/test.yaml diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml new file mode 100644 index 00000000..548c9b38 --- /dev/null +++ b/.github/workflows/test.yaml @@ -0,0 +1,23 @@ +name: Publish Stable to NPM + +on: + push: + tags: + - '[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+' + +jobs: + publish: + runs-on: ubuntu-latest + strategy: + matrix: + nodejs: [ 18 ] + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.nodejs }} + - name: Publish + run: | + echo 'test' + env: + NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}