name: Run tests on: push: branches: - master pull_request: workflow_dispatch: release: types: [published] jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 - uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4 with: node-version: 20 cache: "npm" - run: npm ci - run: npm run build - run: npm run format:check - run: npm run lint - run: npm run package - run: npm run test env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - uses: codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673 # v4 env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}