-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from hedgehoglab-engineering/test-workflow
- Loading branch information
Showing
27 changed files
with
233 additions
and
38 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: Run tests | ||
|
||
on: | ||
- push | ||
- pull_request | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version-file: '.nvmrc' | ||
|
||
- uses: pnpm/action-setup@v2 | ||
name: Install pnpm | ||
with: | ||
version: 8 | ||
run_install: | | ||
- recursive: true | ||
- name: Build | ||
run: pnpm build | ||
|
||
- name: Run tests | ||
run: pnpm test |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
v20 |
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
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
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
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
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
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
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
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
{ | ||
"name": "@hedgehoglab/prettier-config", | ||
"version": "0.1.7", | ||
"description": "", | ||
"keywords": [], | ||
"description": "Prettier config rules for the hedgehog lab org", | ||
"keywords": [ | ||
"prettier-config", | ||
"prettier", | ||
"hedgehoglab" | ||
], | ||
"homepage": "https://github.com/hedgehoglab-engineering/frontend-linters/tree/main/packages/prettier-config", | ||
"license": "ISC", | ||
"author": "Sam Turrell <[email protected]>", | ||
|
@@ -19,7 +23,8 @@ | |
"./dist" | ||
], | ||
"scripts": { | ||
"build": "tsup src/index.ts --format esm,cjs --clean --dts" | ||
"build": "tsup src/index.ts --format esm,cjs --clean --dts", | ||
"test": "tsc --noEmit" | ||
}, | ||
"devDependencies": { | ||
"tsup": "^7.2.0", | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
{ | ||
"name": "@hedgehoglab/stylelint-config-basic", | ||
"version": "0.1.7", | ||
"description": "", | ||
"keywords": [], | ||
"description": "Basic stylelint config rules for the hedgehog lab org", | ||
"keywords": [ | ||
"stylelint-config", | ||
"stylelint", | ||
"hedgehoglab" | ||
], | ||
"homepage": "https://github.com/hedgehoglab-engineering/frontend-linters/tree/main/packages/stylelint-config-basic", | ||
"license": "ISC", | ||
"author": "Sam Turrell <[email protected]>", | ||
|
@@ -19,7 +23,8 @@ | |
"./dist" | ||
], | ||
"scripts": { | ||
"build": "tsup src/index.ts --format esm,cjs --clean --dts && fix-tsup-cjs" | ||
"build": "tsup src/index.ts --format esm,cjs --clean --dts && fix-tsup-cjs", | ||
"test": "tsc --noEmit" | ||
}, | ||
"devDependencies": { | ||
"fix-tsup-cjs": "^1.2.0", | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,13 @@ | ||
{ | ||
"name": "@hedgehoglab/stylelint-config-scss", | ||
"version": "0.1.7", | ||
"description": "", | ||
"keywords": [], | ||
"description": "SCSS specific stylelint config rules for the hedgehog lab org", | ||
"keywords": [ | ||
"stylelint-config", | ||
"stylelint", | ||
"hedgehoglab", | ||
"scss" | ||
], | ||
"homepage": "https://github.com/hedgehoglab-engineering/frontend-linters/tree/main/packages/stylelint-config-scss", | ||
"license": "ISC", | ||
"author": "Sam Turrell <[email protected]>", | ||
|
@@ -19,7 +24,8 @@ | |
"./dist" | ||
], | ||
"scripts": { | ||
"build": "tsup src/index.ts --format esm,cjs --clean --dts && fix-tsup-cjs" | ||
"build": "tsup src/index.ts --format esm,cjs --clean --dts && fix-tsup-cjs", | ||
"test": "tsc --noEmit" | ||
}, | ||
"dependencies": { | ||
"stylelint": "^15.11.0", | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,13 @@ | ||
{ | ||
"name": "@hedgehoglab/stylelint-config-vue", | ||
"version": "0.1.7", | ||
"description": "", | ||
"keywords": [], | ||
"description": "Vue specific stylelint config rules for the hedgehog lab org", | ||
"keywords": [ | ||
"stylelint-config", | ||
"stylelint", | ||
"hedgehoglab", | ||
"vue" | ||
], | ||
"homepage": "https://github.com/hedgehoglab-engineering/frontend-linters/tree/main/packages/stylelint-config-vue", | ||
"license": "ISC", | ||
"author": "Sam Turrell <[email protected]>", | ||
|
@@ -19,7 +24,8 @@ | |
"./dist" | ||
], | ||
"scripts": { | ||
"build": "tsup src/index.ts --format esm,cjs --clean --dts && fix-tsup-cjs" | ||
"build": "tsup src/index.ts --format esm,cjs --clean --dts && fix-tsup-cjs", | ||
"test": "tsc --noEmit" | ||
}, | ||
"dependencies": { | ||
"stylelint-config-html": "^1.1.0", | ||
|
Oops, something went wrong.