Skip to content

Creating ignoreBots field on action #556

Creating ignoreBots field on action

Creating ignoreBots field on action #556

Workflow file for this run

name: CI
on:
pull_request:
types: ['opened', 'reopened', 'synchronize']
push:
branches: ['master']
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 20
cache: npm
- name: Install
run: npm ci --prefer-offline
- name: Format check
run: npm run format:check
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Test
run: npm test -- --coverage
- name: Upload coverage
uses: ./
with:
coverageEndpoint: ${{ secrets.COVERAGE_ENDPOINT }}
coverageToken: ${{ secrets.COVERAGE_TOKEN }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}