Skip to content

feat: award g6 skilled (#13) #14

feat: award g6 skilled (#13)

feat: award g6 skilled (#13) #14

Workflow file for this run

name: Test
on:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 20
- uses: actions/checkout@v2
- name: Test
run: npm run test
- name: Readme
run: npm run readme
- name: Check readme
run: |
if ! git diff --cached --exit-code; then
echo "Error: README.md is not up to date. Please run 'npm run readme' and commit the changes."
exit 1
else
echo "README.md is up to date."
fi