Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: enforce npm usage #578

Merged
merged 5 commits into from Nov 29, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
21 changes: 21 additions & 0 deletions .github/actions/lockfiles/action.yml
@@ -0,0 +1,21 @@
name: 'Lockfile'
description: 'Forbid non-npm lockfiles'
runs:
using: composite
steps:
- name: Check lockfiles
uses: actions/github-script@v6
with:
script: |
const {existsSync} = require('fs');
['yarn.lock', 'pnpm-lock.yaml'].forEach(forbiddenLockFile => {
if(existsSync(forbiddenLockFile)) {
const error = `Lockfile ${forbiddenLockFile} is not allowed in this repo, remove it.`;
core.error(
louis-bompart marked this conversation as resolved.
Show resolved Hide resolved
error,
{title: 'Forbidden lockfile', file: forbiddenLockFile}
);
process.exitCode=1
}
});

2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Expand Up @@ -15,6 +15,8 @@ jobs:
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # tag=v3
- name: Setup
uses: ./.github/actions/setup
- name: Check lockfiles
uses: ./.github/actions/lockfiles
- name: Tests
run: npm test
- name: Build
Expand Down