From c88dc4802fe9ac5835bcd9bda32436394943123f Mon Sep 17 00:00:00 2001 From: Wszerad Date: Sun, 2 Feb 2020 22:07:28 +0100 Subject: [PATCH] remove scope --- .github/workflows/nodejs.yml | 21 --------------------- .github/workflows/npmpublish.yml | 30 ------------------------------ .github/workflows/publish.yml | 1 - 3 files changed, 52 deletions(-) delete mode 100644 .github/workflows/nodejs.yml delete mode 100644 .github/workflows/npmpublish.yml diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml deleted file mode 100644 index 0289b5e..0000000 --- a/.github/workflows/nodejs.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: Node.js CI - -on: [push] - -jobs: - build: - - runs-on: ubuntu-latest - - strategy: - matrix: - node-version: [12.x] - - steps: - - uses: actions/checkout@v2 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 - with: - node-version: ${{ matrix.node-version }} - - run: npm install - - run: npm run build diff --git a/.github/workflows/npmpublish.yml b/.github/workflows/npmpublish.yml deleted file mode 100644 index 1b77589..0000000 --- a/.github/workflows/npmpublish.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Node.js Package - -on: - release: - types: [created] - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v1 - with: - node-version: 12 - - run: npm ci - - run: npm test - - publish-npm: - needs: build - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v1 - with: - node-version: 12 - registry-url: https://registry.npmjs.org/ - - run: npm ci - - run: npm publish - env: - NODE_AUTH_TOKEN: ${{secrets.npm_token}} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 6b2814f..ea8d380 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -13,7 +13,6 @@ jobs: with: node-version: 13 registry-url: https://registry.npmjs.org/ - scope: wssz - name: Test run: | npm ci