Skip to content

test push

test push #11

Workflow file for this run

name: PR
on:
push
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
install-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
registry-url: 'https://registry.npmjs.org'
- name: Check changed files
id: changed-files
uses: tj-actions/changed-files@v38.2.2
with:

Check failure on line 24 in .github/workflows/pr.yml

View workflow run for this annotation

GitHub Actions / PR

Invalid workflow file

The workflow is not valid. .github/workflows/pr.yml (Line: 24, Col: 16): Unexpected value '' .github/workflows/pr.yml (Line: 25, Col: 11): Unexpected value 'files'
files: |
docs/**
- name: Check if all changes are in the docs folder
id: is_docs_only
run: echo "docs_only=${{ steps.changed-files-specific.outputs.only_modified == 'true' }}" >> "$GITHUB_OUTPUT"
- name: Install deps
if: ${{ steps.changed-files.outputs.only_modified == 'true' }}
run: npm ci
# - name: Lint
# run: npm run lint
# - name: Test
# run: npm run test