Skip to content

chore(deps): update dependency eslint-plugin-unicorn to v56 #4578

chore(deps): update dependency eslint-plugin-unicorn to v56

chore(deps): update dependency eslint-plugin-unicorn to v56 #4578

Workflow file for this run

name: ci
on:
push:
branches: [master, dev]
pull_request:
branches: [master, dev]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: 18
- run: npm install --global pnpm
- run: pnpm install --frozen-lockfile
env:
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
- run: pnpm run build
- run: pnpm run test
- name: Report coverage
if: ${{ github.repository_owner == 'maxmilton' }}
run: |
curl -Lo ./cc-test-reporter https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64
chmod +x ./cc-test-reporter
./cc-test-reporter format-coverage -t lcov -o coverage/codeclimate.json coverage/lcov.info
./cc-test-reporter upload-coverage
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
# e2e:
# runs-on: ubuntu-latest
# timeout-minutes: 10
# steps:
# - uses: actions/checkout@v2
# - uses: actions/setup-node@v2
# with:
# node-version: 18
# - run: npm install --global pnpm
# - run: pnpm install --frozen-lockfile
# - run: pnpm run build
# - run: pnpm playwright install-deps chromium
# - run: pnpm run test-e2e
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: 18
- run: npm install --global pnpm
- run: pnpm install --frozen-lockfile
env:
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
- run: pnpm run build
- run: pnpm run lint