From 3c2b000f6b33e622ac58f4a7348d47483e74b1d1 Mon Sep 17 00:00:00 2001 From: Yuki Shibata Date: Sun, 19 Nov 2023 12:51:41 +0900 Subject: [PATCH] add a GitHub Actions for linting --- .github/workflows/lint.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/lint.yml diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 0000000..93048a0 --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,16 @@ +name: Lint + +on: push + +jobs: + textlint: + name: Textlint + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + ref: ${{ github.event.pull_request.head.sha }} + - uses: actions/setup-node@v3 + with: + node-version: 19 +