Skip to content

Fix typo in Github actions #277

Fix typo in Github actions

Fix typo in Github actions #277

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 20.x ]
steps:
- name: SCM checkout
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install lcov
run: sudo apt-get install lcov
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Build
run: npm run dist
- name: Test
run: npm test
- name: Coverage report
run: lcov --summary coverage/Firefox*/lcov.info