Skip to content

Commit

Permalink
Fix ci (#897)
Browse files Browse the repository at this point in the history
* ..updates

* ..updates

* attempt to fix CI

* resolve

* ..updates

* updates

* updates

* resolve

* ..updates
  • Loading branch information
hdJerry authored Nov 18, 2022
1 parent a59fa9a commit 8614d8c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 18 deletions.
24 changes: 6 additions & 18 deletions .github/workflows/ci-solidjs-tailwind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,24 +21,20 @@ jobs:

steps:
- uses: actions/checkout@v2
uses: pnpm/[email protected]
with:
fetch-depth: 0

- name: Use Node.js
uses: actions/setup-node@v2
uses: pnpm/[email protected]
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
cache-dependency-path: solidjs-tailwind/pnpm-lock.yaml

- name: Install dependencies
run: pnpm install --frozen-lockfile
run: npm install
working-directory: solidjs-tailwind

- name: Lint files
run: pnpm run lint
run: npm run lint
working-directory: solidjs-tailwind


Expand All @@ -47,24 +43,20 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: pnpm/[email protected]
with:
fetch-depth: 0

- name: Use Node.js
uses: actions/setup-node@v2
uses: pnpm/[email protected]
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
cache-dependency-path: solidjs-tailwind/pnpm-lock.yaml

- name: Install dependencies
run: pnpm install --frozen-lockfile
run: npm install
working-directory: solidjs-tailwind

- name: Run tests
run: pnpm run test
run: npm run test
working-directory: solidjs-tailwind


Expand All @@ -79,22 +71,18 @@ jobs:

steps:
- uses: actions/checkout@v2
uses: pnpm/[email protected]
with:
fetch-depth: 0

- name: Use Node.js
uses: actions/setup-node@v2
uses: pnpm/[email protected]
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
cache-dependency-path: solidjs-tailwind/pnpm-lock.yaml

- name: Install dependencies
run: pnpm install --frozen-lockfile
run: npm install
working-directory: solidjs-tailwind

- name: Build Project
run: pnpm run build
run: npm run build
working-directory: solidjs-tailwind
1 change: 1 addition & 0 deletions solidjs-tailwind/src/components/Icons/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ export { default as CaretIcon } from './caret';
export { default as CloseIcon } from './close';
export { default as CorrectIcon } from './correct';
export { default as RepoBookIcon } from './repo-book';

0 comments on commit 8614d8c

Please sign in to comment.