This repository has been archived by the owner on Aug 7, 2024. It is now read-only.
add profile Samuel Chan #4882
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: Data Filenames Check | |
on: | |
pull_request: | |
paths: | |
- "data/**" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Test changed-files | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "lts/*" | |
- name: Get changed files | |
id: changed-files | |
uses: tj-actions/changed-files@v41 | |
- name: Check changed files | |
env: | |
FILENAMES: ${{ steps.changed-files.outputs.all_changed_files }} | |
USERNAME: ${{ github.actor }} | |
run: | | |
node .github/scripts/check-filenames.js |