Skip to content

Commit

Permalink
feat: update ci
Browse files Browse the repository at this point in the history
  • Loading branch information
cpreston321 committed Oct 5, 2022
1 parent 2fff0d4 commit 1f5dd62
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Expand Up @@ -29,11 +29,11 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v3
with:
cache: 'pnpm'
cache: "pnpm"
node-version: ${{ matrix.node }}

- name: Install dependencies
run: pnpm install
run: pnpm install --no-frozen-lockfile

- name: Build
run: pnpm build
Expand All @@ -60,11 +60,11 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v3
with:
cache: 'pnpm'
cache: "pnpm"
node-version: ${{ matrix.node }}

- name: Install dependencies
run: pnpm install
run: pnpm install --no-frozen-lockfile

- name: Lint
run: pnpm lint
Expand All @@ -89,11 +89,11 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v3
with:
cache: 'pnpm'
cache: "pnpm"
node-version: ${{ matrix.node }}

- name: Install dependencies
run: pnpm install
run: pnpm install --no-frozen-lockfile

- name: Run Tests
run: pnpm test
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Expand Up @@ -33,12 +33,12 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v3
with:
cache: 'pnpm'
cache: "pnpm"
node-version: ${{ matrix.node }}
registry-url: 'https://registry.npmjs.org/'
registry-url: "https://registry.npmjs.org/"

- name: Install dependencies
run: pnpm install
run: pnpm install --no-frozen-lockfile

- name: Publish Package
run: pnpm publish --access public
Expand Down

0 comments on commit 1f5dd62

Please sign in to comment.