test push #26
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: Test | |
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' | |
# Number of commits to fetch. 0 indicates all history for all branches and tags. Only works on PR. | |
fetch-depth: 0 | |
- name: Check changed files | |
id: changed-files | |
uses: tj-actions/[email protected] | |
with: | |
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: Print all changed files | |
if: steps.changed-files.outputs.any_changed == 'true' | |
run: | | |
echo "One or more test file(s) has changed." | |
echo "List all the files that have changed: ${{ steps.changed-files.outputs.all_changed_files }}" | |
# - name: Lint | |
# run: npm run lint | |
# - name: Test | |
# run: npm run test |