diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d80212b26..e92efe325 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,8 +12,7 @@ jobs: - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v3 - - run: npm install - - run: | - cp src/js/config-template.js src/js/config.js - npm run build --if-present + - run: cp src/js/config-template.js src/js/config.js + - run: npm ci + - run: npm run build --if-present - run: npm test