Skip to content

Bump prettier from 3.2.2 to 3.2.4 #94

Bump prettier from 3.2.2 to 3.2.4

Bump prettier from 3.2.2 to 3.2.4 #94

Workflow file for this run

{
"name": "Node.js CI",
"on": {
"push": { "branches": ["master"] },
"pull_request": { "branches": ["master"] },
"workflow_dispatch": {}
},
"jobs": {
"build": {
"runs-on": "ubuntu-latest",
"strategy": {
"matrix": { "node-version": ["14.x", "16.x", "18.x", "20.x"] }
},
"steps": [
{ "uses": "actions/[email protected]" },
{
"name": "Use Node.js ${{ matrix.node-version }}",
"uses": "actions/[email protected]",
"with": {
"node-version": "${{ matrix.node-version }}",
"cache": "npm"
}
},
{ "run": "npm ci" },
{ "run": "npm run build --if-present" },
{ "run": "npm run lint" },
{ "run": "npm test" }
]
}
}
}