chore(deps): update dependency @fisker/eslint-config to v13 #3407
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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] | |
env: | |
YARN_ENABLE_IMMUTABLE_INSTALLS: false | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node_version }} | |
- 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 | |
- 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 | |
env: | |
YARN_ENABLE_IMMUTABLE_INSTALLS: false | |
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/[email protected] | |
# - name: Setup Node.js | |
# uses: actions/setup-node@v3 | |
# - name: Install Dependencies | |
# run: yarn | |
# - name: Build Package | |
# run: yarn build | |
# - name: Upload Artifact | |
# uses: actions/upload-artifact@v2 | |
# with: | |
# name: dist | |
# path: dist |