Skip to content

Commit

Permalink
ci(github): tidy workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
remarkablemark authored Mar 26, 2024
1 parent 6ff5e5a commit efce979
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
uses: actions/checkout@v4

- name: Install dependencies
run: npm install
run: npm ci --prefer-offline

- name: Run unit tests
run: npm run test:ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/commitlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
fetch-depth: 0

- name: Install dependencies
run: npm install
run: npm ci --prefer-offline

- name: Lint commit message
run: npx commitlint --from=HEAD~1
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
uses: actions/checkout@v4

- name: Install dependencies
run: npm install
run: npm ci --prefer-offline

- name: Run ESLint
run: npm run lint

0 comments on commit efce979

Please sign in to comment.