diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a1cab69373..e93ffee80a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,6 +11,21 @@ on: jobs: + cloc: + runs-on: ubuntu-latest + + steps: + - name: Checkout repo + uses: actions/checkout@v2 + + - name: Set up cloc + run: | + sudo apt-get update + sudo apt-get -y install cloc + + - name: Print lines of code + run: cloc --include-lang C#,SQL,Razor,"Bourne Shell",PowerShell,HTML,CSS,Sass,JavaScript,TypeScript --vcs git + ubuntu: runs-on: ubuntu-latest @@ -23,11 +38,6 @@ jobs: - name: Set up gulp run: npm i -g gulp - - name: Set up cloc - run: | - sudo apt-get update - sudo apt-get -y install cloc - - name: Print environment run: | dotnet --info @@ -52,9 +62,6 @@ jobs: - name: Checkout repo uses: actions/checkout@v2 - - name: Print lines of code - run: cloc --vcs git --exclude-dir Resources,store,test,Properties --include-lang C#,XAML - - name: Build run: | chmod +x ./build.sh