Skip to content

Merge pull request #220 from devops-actions/rajbos-patch-1 #405

Merge pull request #220 from devops-actions/rajbos-patch-1

Merge pull request #220 from devops-actions/rajbos-patch-1 #405

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@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
- uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1
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@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.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
}