Skip to content

Commit

Permalink
💚 スクリプトの順番変更
Browse files Browse the repository at this point in the history
  • Loading branch information
wappon28dev committed Jul 2, 2024
1 parent 2ba4182 commit e515d69
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,18 @@ jobs:
- name: 🎉 Install project dependencies
run: npm install

- name: ✅ Check code format/style
run: npm run test
- name: 🔧 Create Empty Mocks
run: npm run create-empty-mocks

- name: 🏗️ Build app
run: npm run build
env:
PUBLIC_MICROCMS_SERVICE_DOMAIN: ${{ secrets.PUBLIC_MICROCMS_SERVICE_DOMAIN }}
PUBLIC_MICROCMS_API_KEY: ${{ secrets.PUBLIC_MICROCMS_API_KEY }}

- name: ✅ Check code format/style
run: npm run test

- name: 📂 Sync files
uses: SamKirkland/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"lint": "eslint ./src/ && markuplint './src/**/*.svelte'",
"generate:cms": "npx --yes microcms-typescript schemas src/lib/utils/types/microcms.ts",
"test": "tsc && prettier --check ./src/ --check && npm run lint --check && vitest --run",
"crate-empty-mocks": "node scripts/crate-empty-mocks.mjs",
"create-empty-mocks": "node scripts/create-empty-mocks.mjs",
"clean": "npx --yes rimraf ./node_modules ./dist ./.sveltekit"
},
"devDependencies": {
Expand Down
File renamed without changes.

0 comments on commit e515d69

Please sign in to comment.