Skip to content

Add temporary build access for branch #70

Add temporary build access for branch

Add temporary build access for branch #70

Workflow file for this run

name: Build
on:
push:
branches: [master, stylelint-16]
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, 20]
stylelint: [14, 15, 16]
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: 20
- 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