From 7b791dcae38f7a1ab762bde71d5df835e42997da Mon Sep 17 00:00:00 2001 From: Sebastian Wachter Date: Wed, 29 Jul 2020 12:55:40 +0200 Subject: [PATCH] Switch from npm i to npm ci --- .github/workflows/github-actions.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/github-actions.yml b/.github/workflows/github-actions.yml index ca966b8..89cecc6 100644 --- a/.github/workflows/github-actions.yml +++ b/.github/workflows/github-actions.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - - run: npm i + - run: npm ci - run: npm run lint publish: @@ -25,7 +25,7 @@ jobs: with: node-version: 14 registry-url: https://registry.npmjs.org/ - - run: npm i + - run: npm ci - run: npm run build-bundle - run: cd dist - run: npm publish