Skip to content

testing render deploy #24

testing render deploy

testing render deploy #24

Workflow file for this run

{
"name": "Lint workflow",
"on": {
"pull_request": {
"branches": ["develop", "staging"]
}
},
"jobs": {
"test": {
"runs-on": "ubuntu-latest",
"steps": [
{
"name": "Checkout code",
"uses": "actions/checkout@v1"
},
{
"name": "Use Node.js 21.x",
"uses": "actions/setup-node@v1",
"with": {
"node-version": "21.x"
}
},
{
"name": "🧰 install deps",
"run": "npm install"
},
{
"name": "Run lint",
"run": "npm run lint"
}
]
}
}
}