Refresh CI job and introduce Release action/branch #658
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
workflow_dispatch: | |
workflow_call: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: | |
- opened | |
- ready_for_review | |
- synchronize | |
# Only run on a given PR if relevant files have changed. | |
paths: | |
- '.eslintignore' | |
- '.eslintrc.js' | |
- '.npmrc' | |
- '**.js' | |
- '**.json' | |
- '**.jsx' | |
- 'babel.config.js' | |
- 'webpack.config.js' | |
defaults: | |
run: | |
shell: bash | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
node: | |
uses: ./.github/workflows/node.yml | |
secrets: inherit |