From 46e43f4bde4a35785b4997b81e86cd19f046b69b Mon Sep 17 00:00:00 2001 From: Minteck Date: Tue, 21 Dec 2021 16:52:28 +0100 Subject: Commit --- .../.github/workflows/ci.yaml | 46 ++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 src/node_modules/google-libphonenumber/.github/workflows/ci.yaml (limited to 'src/node_modules/google-libphonenumber/.github/workflows/ci.yaml') diff --git a/src/node_modules/google-libphonenumber/.github/workflows/ci.yaml b/src/node_modules/google-libphonenumber/.github/workflows/ci.yaml new file mode 100644 index 0000000..c040b4b --- /dev/null +++ b/src/node_modules/google-libphonenumber/.github/workflows/ci.yaml @@ -0,0 +1,46 @@ +name: CI + +on: + push: + branches: + - master + tags: + - '*' + pull_request: + branches: + - '*' + +jobs: + test: + name: Run Tests + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v1 + with: + node-version: 10 + - run: npm install + - run: npm test + publish: + name: Publish Release + if: startsWith(github.ref, 'refs/tags/v') + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v1 + with: + node-version: 10 + registry-url: https://registry.npmjs.org/ + - run: npm install + - run: npm publish + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + - uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{ github.ref }} + release_name: ${{ github.ref }} + body: | + ## Changelog + draft: true -- cgit