Skip to content

dependabot[bot] is running GitHub Actions 🚀 #231

dependabot[bot] is running GitHub Actions 🚀

dependabot[bot] is running GitHub Actions 🚀 #231

Workflow file for this run

name: Run CI
run-name: ${{ github.actor }} is running GitHub Actions 🚀
on:
push:
branches:
- 'main'
pull_request:
workflow_dispatch:
jobs:
build_and_test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20]
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Lint
run: pnpm run lint
- name: Test
run: pnpm run test
- name: Coverage
run: pnpm run coverage
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: Build
run: pnpm run build