From e40b3832760aa8228c4a73ce853616934c28a1b4 Mon Sep 17 00:00:00 2001 From: adueck Date: Tue, 6 Aug 2024 17:46:18 -0400 Subject: [PATCH] include check-all-inflections in CI --- .github/workflows/check-inflections.yml | 26 ------------------------- .github/workflows/ci.yml | 1 + 2 files changed, 1 insertion(+), 26 deletions(-) delete mode 100644 .github/workflows/check-inflections.yml diff --git a/.github/workflows/check-inflections.yml b/.github/workflows/check-inflections.yml deleted file mode 100644 index 3ff9871..0000000 --- a/.github/workflows/check-inflections.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Check Inflections - -on: - push: - branches: ["*"] - pull_request: - branches: ["*"] - - workflow_dispatch: - -jobs: - ci: - runs-on: ubuntu-latest - env: - LINGDOCS_DICTIONARY_URL: ${{ secrets.LINGDOCS_DICTIONARY_URL }} - LINGDOCS_NPM_TOKEN: ${{ secrets.LINGDOCS_NPM_TOKEN }} - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 - with: - node-version: 16 - cache: "yarn" - - name: run script - run: | - yarn install-r - yarn check-all-inflections diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cdefbc8..d497906 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,3 +26,4 @@ jobs: yarn build-library yarn build-website yarn test --silent + yarn check-all-inflections