Skip to content

Commit

Permalink
pnpm init
Browse files Browse the repository at this point in the history
  • Loading branch information
narthur committed Dec 23, 2023
1 parent b57e747 commit feda61c
Show file tree
Hide file tree
Showing 5 changed files with 1,088 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,10 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 18
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Install dependencies
run: pnpm install
- name: Run linter
run: npx @redocly/cli lint track/spec.yaml
run: pnpm run lint
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
18
16 changes: 16 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"name": "toggl-openapi",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "redocly lint ./track/spec.yaml"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@redocly/cli": "^1.6.0"
}
}
Loading

0 comments on commit feda61c

Please sign in to comment.