Skip to content

Commit f192244

Browse files
authored
Merge pull request #443 from geolonia/428-yarn-to-npm
yarnからnpmへの切り替え
2 parents 270eb1a + aac6552 commit f192244

File tree

4 files changed

+10078
-5560
lines changed

4 files changed

+10078
-5560
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ jobs:
3838
uses: actions/cache@v4
3939
with:
4040
path: node_modules
41-
key: modules-cache-v1-${{ runner.os }}-${{ hashFiles('yarn.lock') }}
42-
- run: yarn install
43-
- run: yarn lint
44-
- run: yarn test
45-
- run: yarn build
41+
key: modules-cache-v1-${{ runner.os }}-${{ hashFiles('package-lock.json') }}
42+
- run: npm install
43+
- run: npm run lint
44+
- run: npm run test
45+
- run: npm run build
4646
- name: save the built
4747
uses: actions/upload-artifact@v4
4848
if: "!failure()"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ You can see more examples at [https://geolonia.github.io/embed/](https://geoloni
5555
```shell
5656
$ git clone git@github.com:geolonia/embed.git
5757
$ cd embed
58-
$ yarn
58+
$ npm install
5959
$ npm start # run dev server
6060
$ npm test # run tests
6161
$ npm run build # build production bundle

0 commit comments

Comments
 (0)