Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions .github/workflows/_ci-node.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
# This workflow is centrally managed in https://github.com/LizardByte/.github/
# Don't make changes to this file in this repo as they will be overwritten with changes made to the same file in
# the above-mentioned repo.

# To use, add the `npm-pkg` repository label to identify repositories that should trigger this workflow.

# This will run standard CI for Node.js/npm/TypeScript projects.

name: CI-Node
permissions:
contents: write # required for release_setup action

on:
push:
branches:
- master
pull_request:
branches:
- master

concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true

jobs:
call-ci-node:
name: CI-Node
uses: LizardByte/.github/.github/workflows/__call-ci-node.yml@master
if: ${{ github.repository != 'LizardByte/.github' }}
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
31 changes: 31 additions & 0 deletions .github/workflows/_update-npm.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
# This workflow is centrally managed in https://github.com/LizardByte/.github/
# Don't make changes to this file in this repo as they will be overwritten with changes made to the same file in
# the above-mentioned repo.

# To use, add the `npm-pkg` repository label to identify repositories that should trigger this workflow.

# Update NPM packages on release events.

name: Update NPM
permissions:
contents: read
id-token: write # required for provenance and OIDC
packages: write

on:
release:
types:
- released

concurrency:
group: "${{ github.workflow }}-${{ github.event.release.tag_name }}"
cancel-in-progress: true

jobs:
update-npm:
name: Update NPM
uses: LizardByte/.github/.github/workflows/__call-update-npm.yml@master
if: github.repository_owner == 'LizardByte'
with:
release_version: ${{ github.event.release.tag_name }}
171 changes: 0 additions & 171 deletions .github/workflows/ci.yml

This file was deleted.