From 07926b88ea310c3629bb9465d255fe6626b37c7a Mon Sep 17 00:00:00 2001 From: sasza Date: Wed, 22 Nov 2023 18:33:42 +0100 Subject: [PATCH] feat: add github pipeline --- .github/workflows/publish.yml | 22 ++++++++++++++++++++++ .gitignore | 1 + 2 files changed, 23 insertions(+) create mode 100644 .github/workflows/publish.yml diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..c560129 --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,22 @@ +name: Deployment production +on: + push: + branches: + - master +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Setup Node + uses: actions/setup-node@v2 + with: + node-version: '21.2.0' + registry-url: 'https://registry.npmjs.org' + - name: Install dependencies and build + run: npm ci && npm run lint && npm run test + - name: Publish package + run: npm publish + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} diff --git a/.gitignore b/.gitignore index 06a7b8e..6dee720 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ coverage/ +dist/ # dependencies /node_modules