diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml deleted file mode 100644 index d320673..0000000 --- a/.github/workflows/build.yaml +++ /dev/null @@ -1,29 +0,0 @@ -name: Run Build -on: - - push - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Install Node.js - uses: actions/setup-node@v3 - with: - node-version: '18.x' - - - uses: pnpm/action-setup@v2 - name: Install pnpm - id: pnpm-install - with: - version: 8 - run_install: false - - - name: Install dependencies - run: pnpm install - - - name: Build - run: pnpm build diff --git a/.github/workflows/npm-publish.yaml b/.github/workflows/npm-publish.yaml index bb8bfa9..29af880 100644 --- a/.github/workflows/npm-publish.yaml +++ b/.github/workflows/npm-publish.yaml @@ -25,10 +25,10 @@ jobs: - name: Install dependencies run: pnpm install - - name: Build - run: pnpm build + - name: Lint + run: pnpm lint - name: Publish to npm - run: npm publish + run: pnpm publish -r --no-git-checks env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} diff --git a/README.md b/README.md index 9bda688..2dd481a 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,10 @@ # `@j10c/eslint-config` +- Double quotes, with semi +- No trailing space +- Auto fix for formatting (aimed to be used standalone without Prettier) +- Reasonable defaults, best practices, only one-line of config + ## Installation ```sh