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