Skip to content

Bump eslint-config-prettier from 8.10.0 to 9.0.0 #69

Bump eslint-config-prettier from 8.10.0 to 9.0.0

Bump eslint-config-prettier from 8.10.0 to 9.0.0 #69

Workflow file for this run

name: Build
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
name: Node v${{ matrix.node-version }} / stylelint v${{ matrix.stylelint }}
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14, 16, 18]
stylelint: [14, 15]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node v${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: |
npm install "stylelint@${{ matrix.stylelint }}"
npm install
- name: Version Check
run: |
node --version
npm ls stylelint
- name: Test packages
run: npm test
success:
name: Success
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: npm install
- name: Run Code Coverage
run: npm run jest --coverage
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
path-to-lcov: ./coverage/lcov.info