diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml deleted file mode 100644 index f26d7ee..0000000 --- a/.github/workflows/publish.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: Publish - -on: - push: - tags: - - '*' - -jobs: - build: - runs-on: ubuntu-22.04 - timeout-minutes: 10 - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 - with: - node-version: '18.x' - registry-url: 'https://npm.pkg.github.com' - - name: Install - # Skip post-install to avoid malicious scripts stealing PAT - run: npm install --ignore-script - env: - # GITHUB_TOKEN can't access packages hosted in private repos, - # even within the same organisation - NODE_AUTH_TOKEN: ${{ secrets.REEDSY_BOT_PERSONAL_ACCESS_TOKEN }} - - name: Post-install - run: npm rebuild && npm run prepare --if-present - - name: Build - run: npm run build - - name: Publish - run: npm publish - env: - NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 96c280d..fda3d67 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,43 +4,23 @@ on: push: branches: - master - pull_request_target: + pull_request: + branches: + - master jobs: build: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest timeout-minutes: 10 steps: - - name: Checkout (push) - if: ${{ github.event_name == 'push' }} - uses: actions/checkout@v2 - with: - # Use PAT instead of default Github token, because the default - # token deliberately will not trigger another workflow run - token: ${{ secrets.REEDSY_BOT_PERSONAL_ACCESS_TOKEN }} - # Separate checkout action for pull_request_target, which needs to - # explicitly checkout the SHA - - name: Checkout (pull request) - if: ${{ github.event_name == 'pull_request_target' }} - uses: actions/checkout@v2 + - name: Checkout + uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: - ref: ${{ github.event.pull_request.head.sha }} - # Use PAT instead of default Github token, because the default - # token deliberately will not trigger another workflow run - token: ${{ secrets.REEDSY_BOT_PERSONAL_ACCESS_TOKEN }} - - uses: actions/setup-node@v2 - with: - node-version: '16.x' + node-version: '20.x' registry-url: 'https://npm.pkg.github.com' - name: Install - # Skip post-install to avoid malicious scripts stealing PAT - run: npm install --ignore-script - env: - # GITHUB_TOKEN can't access packages hosted in private repos, - # even within the same organisation - NODE_AUTH_TOKEN: ${{ secrets.REEDSY_BOT_PERSONAL_ACCESS_TOKEN }} - - name: Post-install - run: npm rebuild && npm run prepare --if-present + run: npm install - name: Lint run: npm run lint - name: Build @@ -49,6 +29,6 @@ jobs: run: npm run test:coverage env: COVERAGE_REPORTER: text - - name: Tag + - name: Release if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} - run: ./tag.sh + run: ./release.sh diff --git a/tag.sh b/release.sh similarity index 97% rename from tag.sh rename to release.sh index 669c780..fa2cd1f 100755 --- a/tag.sh +++ b/release.sh @@ -24,3 +24,5 @@ git add --all lib/ git commit --message "Release version $VERSION" git tag $VERSION git push origin refs/tags/$VERSION + +npm publish