Skip to content

ci: use global workflows for build, test, and release #2

ci: use global workflows for build, test, and release

ci: use global workflows for build, test, and release #2

Workflow file for this run

---
# 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 }}
GH_TOKEN: ${{ secrets.GH_BOT_TOKEN }}