Skip to content

Add more skills

Add more skills #29

Workflow file for this run

name: Check skills
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}
- name: Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm ci
working-directory: .github/src
- run: node check.js
working-directory: .github/src
- name: Generate results
run: |
git config --global user.name "Metarhia skill bot"
git config --global user.email "[email protected]"
git add ./Profile ./README.md ./Skills
git commit -m "Automated skill analysis"
git push