Bump prettier from 2.8.8 to 3.0.3 #482
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-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@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 | |
- 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@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 | |
- 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 | |
} |