Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
koyopro committed Jan 9, 2025
1 parent 5d70884 commit 9c10432
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@ jobs:
POSTGRES_PASSWORD: password
steps:
- checkout
- run: sudo apt-get update && sudo apt-get install -y cpio
- restore_cache:
keys:
- v1-node-modules-{{ checksum "package-lock.json" }}
- v1-node-modules-
- run: sudo apt-get update && sudo apt-get install -y cpio
- v1-node-modules-<< parameters.node_image >>-{{ checksum "package-lock.json" }}
- v1-node-modules-<< parameters.node_image >>
- run: npm install
- save_cache:
paths:
- node_modules
key: v1-node-modules-{{ checksum "package-lock.json" }}
key: v1-node-modules-<< parameters.node_image >>-{{ checksum "package-lock.json" }}
- run: npm run build
- run: npm run test -w accel-web
- run: npm run generate:mysql
Expand Down

0 comments on commit 9c10432

Please sign in to comment.