Skip to content

WIP: testing

WIP: testing #28

Workflow file for this run

name: Check Config Files
on:
pull_request: {}
jobs:
check-mutation:
name: Check for mutations
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20.x
registry-url: https://registry.npmjs.org
- name: Install winglang
run: npm i -g winglang
- name: Generate config files
run: ./mkrepo.sh
- name: Check for missing changes
run: git diff --exit-code || (echo 'Please run "./mkrepo.sh" from the root of
the repository, and commit any changes to your branch.' && exit 1)