Skip to content

Commit

Permalink
fix(release): allow downloading binary via proxy again
Browse files Browse the repository at this point in the history
  • Loading branch information
nejch committed Feb 3, 2024
1 parent 96b5dd2 commit 33a3acd
Show file tree
Hide file tree
Showing 8 changed files with 5,376 additions and 2,607 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ jobs:
cache: 'npm'

- run: npm ci
- run: npm start
- run: npm build
- run: npm run lint:commit -- --to "${{ github.sha }}"
- run: npm run lint:eslint
- run: npm run test
- run: npm run start
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

- run: 'npm ci'

- run: 'npm run start'
- run: 'npm run build'

- name: 'Verify the integrity of provenance attestations and registry signatures for installed dependencies'
run: 'npm audit signatures'
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,9 @@ Otherwise you could clone the repository and execute the script manually.
git clone https://github.com/editorconfig-checker/editorconfig-checker.javascript
cd editorconfig-checker.javascript
npm install
npm start
npm build
npm test
npm start
```

## Usage
Expand Down
5 changes: 5 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
};
Loading

0 comments on commit 33a3acd

Please sign in to comment.