Skip to content

Commit

Permalink
deps: FY25 Q3 dependency bumps 🌲 & npm -> pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
stdavis committed Jan 10, 2025
1 parent 6da4069 commit e06852f
Show file tree
Hide file tree
Showing 8 changed files with 6,713 additions and 18,048 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,25 @@ jobs:
with:
show-progress: false

- name: 📦 Setup PNPM
uses: pnpm/action-setup@v4
with:
version: 9

- name: ⎔ Setup Node.js
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: npm
cache: pnpm

- name: 📥 Download dependencies
run: npm ci
run: pnpm install

- name: 🧵 Lint
run: npm run lint
run: pnpm run lint

- name: 🧪 Run tests
run: npm test
run: pnpm test

deploy-preview:
name: Firebase preview
Expand All @@ -53,5 +58,5 @@ jobs:
service-account-email: ${{ secrets.SERVICE_ACCOUNT_EMAIL }}
project-id: ${{ secrets.PROJECT_ID }}
preview: yes
build-command: npm run build:stage
build-command: pnpm run build:stage
repo-token: ${{ secrets.GITHUB_TOKEN }}
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
identity-provider: ${{ secrets.IDENTITY_PROVIDER }}
service-account-email: ${{ secrets.SERVICE_ACCOUNT_EMAIL }}
project-id: ${{ secrets.PROJECT_ID }}
build-command: npm run build:stage
build-command: pnpm run build:stage

deploy-prod:
name: Deploy to production
Expand All @@ -41,7 +41,7 @@ jobs:
identity-provider: ${{ secrets.IDENTITY_PROVIDER }}
service-account-email: ${{ secrets.SERVICE_ACCOUNT_EMAIL }}
project-id: ${{ secrets.PROJECT_ID }}
build-command: npm run build:prod
build-command: pnpm run build:prod
service-now-instance: ${{ secrets.SN_INSTANCE }}
service-now-table: ${{ secrets.SN_TABLE }}
service-now-system-id: ${{ secrets.SN_SYS_ID }}
Expand Down
4 changes: 1 addition & 3 deletions .storybook/main.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,5 @@ module.exports = {
options: {}
},

docs: {
autodocs: true
}
docs: {}
};
1 change: 1 addition & 0 deletions .storybook/preview.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import 'bootstrap/dist/css/bootstrap.css';

export const parameters = {};
export const tags = ['autodocs'];
Loading

0 comments on commit e06852f

Please sign in to comment.