Skip to content

Bump github/codeql-action from 3.26.10 to 3.27.0 in /.github/workflows #642

Bump github/codeql-action from 3.26.10 to 3.27.0 in /.github/workflows

Bump github/codeql-action from 3.26.10 to 3.27.0 in /.github/workflows #642

Workflow file for this run

name: 'build-test'
on: # rebuild any PRs and main branch changes
pull_request:
push:
branches:
- main
- 'releases/*'
permissions:
contents: read
jobs:
build: # make sure build/ci works properly
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: ${{ runner.os }}-node-
- run: |
npm ci
npm run all
test: # make sure the action works on a clean machine without building
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: ./
id: store-json
with:
json: '{"foo": "test"}'
filename: 'test.json'
# todo: add test that checks with additional quotes in the value
- shell: pwsh
name: test the file content
run: |
$content = Get-Content -Path 'test.json'
Write-Host "Found this content in the file:"
Write-Host $content
$test = $content | ConvertFrom-Json
if ($test.foo -eq 'test') {
Write-Host "File found correct"
}
else {
Write-Host "Found this json:"
Write-Host $test | ConvertTo-Json
}