Update Jovylle B's information, website link, name and twitter #2145
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: Validate data.js | |
on: | |
pull_request: | |
paths: src/data.js | |
env: | |
CI: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 16.x | |
- name: Cache/Restore node modules | |
uses: actions/cache@v1 | |
with: | |
path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS | |
key: ${{ runner.os }}-npm-${{ hashFiles('package-lock.json') }} | |
- name: Install Dependencies | |
run: npm install | |
- name: Validate data.js | |
run: node ./scripts/data-validate.js | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |