notifme/notifme-sdk

View on GitHub
.github/workflows/ci-test.yml

Summary

Maintainability
Test Coverage
name: CI Test

on:
  workflow_call:
  pull_request:
    branches: [master]

jobs:
  test:
    runs-on: ubuntu-latest

    strategy:
      matrix:
        node-version: [16, 18, 19, 20]

    steps:
      - name: Checkout
        uses: actions/checkout@v4
        with:
          fetch-depth: 0
      - name: Use Node.js ${{ matrix.node-version }}
        uses: actions/setup-node@v4
        with:
          node-version: ${{ matrix.node-version }}
          cache: "yarn"
      - name: Install dependencies
        run: yarn install --frozen-lockfile
      - name: Run linter
        run: yarn run lint
      - name: Run tests
        run: yarn run testonly