diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b28ccfd30bb..447efea4ca3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,7 +21,7 @@ jobs: token: ${{ secrets.ACTION_GITHUB_TOKEN }} # Install all dependencies - name: install - run: npm ci + run: npm install # Transpile all specs from ts to js - name: build run: npm run build diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 9b621cc46d0..34e175967a7 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -11,5 +11,5 @@ jobs: - uses: actions/setup-node@v1 with: node-version: 14.x - - run: npm ci + - run: npm install - run: npm run lint diff --git a/.github/workflows/typecheck.yml b/.github/workflows/typecheck.yml index 4fd0701fd9e..8697d286714 100644 --- a/.github/workflows/typecheck.yml +++ b/.github/workflows/typecheck.yml @@ -8,9 +8,9 @@ jobs: typecheck: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v1 - with: - node-version: 14.x - - run: npm ci - - run: npm test + - uses: actions/checkout@v2 + - uses: actions/setup-node@v1 + with: + node-version: 14.x + - run: npm install + - run: npm test