Skip to content

chore(deps): update dependency @fisker/lint-staged-config to v3.3.2 #3075

chore(deps): update dependency @fisker/lint-staged-config to v3.3.2

chore(deps): update dependency @fisker/lint-staged-config to v3.3.2 #3075

name: CI
on:
push:
branches:
- main
pull_request:
# schedule:
# - cron: "0 23 * * 6"
jobs:
test:
strategy:
fail-fast: false
matrix:
os:
- "ubuntu-latest"
- "macos-latest"
- "windows-latest"
node_version:
- "18"
- "16"
- "14"
# exclude:
# - os: "macos-latest"
# node_version: "12"
name: Node.js ${{ matrix.node_version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
# needs: [build]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
- name: Linux Setup
if: matrix.os == 'ubuntu-latest'
run: Xvfb -ac :99 -screen 0 800x600x8 &
- name: Install Dependencies
run: yarn
# - name: Download Artifact
# uses: actions/download-artifact@v2
# with:
# name: dist
# path: dist
- name: Run Test
run: yarn test-coverage --timeout=10s
env:
DISPLAY: :99
- name: Upload Coverage
uses: coverallsapp/github-action@master
if: success()
continue-on-error: true
with:
github-token: ${{ secrets.github_token }}
parallel: true
coverage:
needs: test
runs-on: ubuntu-latest
steps:
- name: Sending webhook to Coveralls
uses: coverallsapp/github-action@master
continue-on-error: true
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
- name: Install Dependencies
run: yarn
- name: Run Lint
run: yarn lint
# build:
# name: Build
# runs-on: ubuntu-latest
# steps:
# - name: Checkout
# uses: actions/checkout@v2
# - name: Setup Node.js
# uses: actions/setup-node@v2
# - name: Install Dependencies
# run: yarn
# - name: Build Package
# run: yarn build
# - name: Upload Artifact
# uses: actions/upload-artifact@v2
# with:
# name: dist
# path: dist