From 9e91b2c4cb2effda3b2e3c7f09fa3f3efac12a2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCrg=C3=BCn=20Day=C4=B1o=C4=9Flu?= Date: Sat, 4 May 2024 20:12:21 +0200 Subject: [PATCH] update workflow (#244) --- .github/workflows/ci.yml | 123 +++++---------------------------------- 1 file changed, 13 insertions(+), 110 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index caab773..af5918d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,119 +3,22 @@ name: CI on: push: branches: - - main - - master - - next - - "v*" + - main + - master + - next + - 'v*' paths-ignore: - - "docs/**" - - "*.md" + - 'docs/**' + - '*.md' pull_request: paths-ignore: - - "docs/**" - - "*.md" + - 'docs/**' + - '*.md' jobs: - dependency-review: - name: Dependency Review - if: github.event_name == 'pull_request' - runs-on: ubuntu-latest - permissions: - contents: read - steps: - - name: Check out repo - uses: actions/checkout@v4 - with: - persist-credentials: false - - - name: Dependency review - uses: actions/dependency-review-action@v4 - - lint: - name: Lint Code - runs-on: ubuntu-latest - permissions: - contents: read - steps: - - name: Check out repo - uses: actions/checkout@v4 - with: - persist-credentials: false - - - name: Setup Node - uses: actions/setup-node@v4 - with: - node-version: lts/* - - - name: Install dependencies - run: npm i --ignore-scripts - - - name: Lint code - run: npm run lint - test: - name: Test - runs-on: ubuntu-latest - permissions: - contents: read - strategy: - matrix: - node-version: [14, 16, 18, 20] - steps: - - name: Check out repo - uses: actions/checkout@v4 - with: - persist-credentials: false - - - name: Setup Node ${{ matrix.node-version }} - uses: actions/setup-node@v4 - with: - node-version: ${{ matrix.node-version }} - - - name: Upgrade npm - if: ${{ success() && matrix.node-version == '6' }} - run: npm i npm@6.13.4 -g - - - name: Install dependencies - run: npm i --ignore-scripts - - - name: Run tests - run: npm run test:unit - - typescript: - name: Test TypeScript - runs-on: ubuntu-latest - permissions: - contents: read - steps: - - name: Check out repo - uses: actions/checkout@v4 - with: - persist-credentials: false - - - name: Setup Node - uses: actions/setup-node@v4 - with: - node-version: lts/* - - - name: Install dependencies - run: npm i --ignore-scripts - - - name: tsd - run: npm run test:typescript - - automerge: - name: Automerge Dependabot PRs - if: > - github.event_name == 'pull_request' && - github.event.pull_request.user.login == 'dependabot[bot]' - needs: [lint, test, typescript] - permissions: - pull-requests: write - contents: write - runs-on: ubuntu-latest - steps: - - uses: fastify/github-action-merge-dependabot@v3 - with: - github-token: ${{ secrets.GITHUB_TOKEN }} - target: major + uses: fastify/workflows/.github/workflows/plugins-ci.yml@v4.2.1 + with: + lint: true + license-check: true + node-versions: '["16", "18", "20", "22"]'