Skip to content

fix(core): listener relative state #14

fix(core): listener relative state

fix(core): listener relative state #14

Workflow file for this run

name: CI
on:
pull_request:
branches:
- v2
jobs:
changedfiles:
runs-on: ubuntu-latest
outputs:
all: ${{ steps.changes.outputs.all}}
steps:
uses: actions/checkout@v2
with:

Check failure on line 15 in .github/workflows/blank.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/blank.yml

Invalid workflow file

You have an error in your yaml syntax on line 15
fetch-depth: 0
- name: Get changed files
id: changes
run: |
echo "::set-output name=all::$(git diff --name-only --diff-filter=ACMRT ${{ github.event.pull_request.base.sha }} ${{ github.sha }} | grep packages/ | xargs)"
preview-publish:
runs-on: ubuntu-latest
needs: changedfiles
if: ${{needs.changedfiles.outputs.ts}}
steps:
uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
cache: npm
- uses: actions/github-script@v5
- name: install dependencies
run: cd $GITHUB_WORKSPACE && npm i
- name: publish preview version
run: echo 'Not ready yet'
# run: cd $GITHUB_WORKSPACE && npx ts-node scripts/run_publish.ts ${{needs.changedfiles.outputs.ts}}