[github-actions] Bump actions/checkout from 3 to 4 #38
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
workflow_dispatch: | |
push: | |
pull_request: | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'npm' | |
cache-dependency-path: control/package-lock.json | |
- uses: actions/setup-dotnet@v3 | |
# Build solution | |
# - https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-environment-variables | |
- run: dotnet build | |
env: | |
DOTNET_ROLL_FORWARD: Major | |
DOTNET_NOLOGO: 1 | |
DOTNET_CLI_TELEMETRY_OPTOUT: 1 | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 | |
# Prepare artifact(s) | |
# - Create an arbitrary file in the root of the dist directory. | |
# - This is to try and make it clearer that there is a nested zip inside the artifact zip file. | |
- run: echo "${{ github.server_url }}/${{ github.repository }}" > ./dist/repo-url.txt | |
- name: 'Upload artifact' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ github.event.repository.name }}__extract_this_zip | |
path: ./dist/* | |
retention-days: 15 | |
validate-resx-files: | |
name: Validate resx files | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Setup xmllint | |
run: | | |
if ! command -v xmllint &> /dev/null | |
then | |
sudo apt-get update | |
sudo apt-get install -y libxml2-utils | |
fi | |
shell: bash | |
- name: Check resx files contain valid xml | |
run: | | |
shopt -s globstar | |
for resx_file in $(/bin/ls ./**/*.resx) | |
do | |
if xmllint --noout "$resx_file" > /dev/null 2>&1 ; | |
then | |
echo "Valid: $resx_file" | |
else | |
echo "Invalid: $resx_file" && exit 1 | |
fi | |
done | |
shell: bash |