Skip to content

Commit

Permalink
add test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
lukachi committed Mar 7, 2024
1 parent 0db6d89 commit 1810233
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -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 }}

0 comments on commit 1810233

Please sign in to comment.