Skip to content

Merge pull request #106 from keenwon/dependabot/npm_and_yarn/postcss-… #1144

Merge pull request #106 from keenwon/dependabot/npm_and_yarn/postcss-…

Merge pull request #106 from keenwon/dependabot/npm_and_yarn/postcss-… #1144

Workflow file for this run

name: unittest
on: push
jobs:
test:
name: Test on node ${{ matrix.node_version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node_version: [14, 18]
os: [ubuntu-latest, macOS-latest]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
architecture: 'x64'
- name: npm install
run: npm install
- name: npm run test
run: npm run test
- name: npm run test:coverage
if: matrix.node_version == 14 && matrix.os == 'ubuntu-latest'
run: npm run test:coverage
- name: Upload coverage to Codecov
if: matrix.node_version == 14 && matrix.os == 'ubuntu-latest'
uses: codecov/codecov-action@v2
with:
token: ${{secrets.CODECOV_TOKEN}}
file: ./coverage/lcov.info