Skip to content
This repository has been archived by the owner on Jul 8, 2023. It is now read-only.

Bump eslint from 8.42.0 to 8.43.0 #544

Bump eslint from 8.42.0 to 8.43.0

Bump eslint from 8.42.0 to 8.43.0 #544

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: '0 0 1 * *' # Once a month
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- name: Lint source
run: npm run lint
- name: Run unit tests
run: npm test
coverage:
needs: [test]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16.x' # Fails on 18
cache: 'npm'
- run: npm ci
- uses: paambaati/codeclimate-action@5f637ccd517bc8960de0fe59379dd922bcba9486
env:
CC_TEST_REPORTER_ID: cbe1ba43d6de77501997cd85b35dec2002f3a06db28fe46bc6ed10bc3d613111
with:
coverageCommand: npm run coverage
e2e:
needs: [test]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18.x'
cache: 'npm'
- run: npm ci
- run: npx playwright install --with-deps chrome firefox webkit msedge
- run: npm run build
- name: Run E2E tests
run: npm run test:e2e
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30