Skip to content

Bump postcss and react-scripts #268

Bump postcss and react-scripts

Bump postcss and react-scripts #268

Workflow file for this run

name: Node.js CI
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm test -- --coverage
- run: npm run prettier-check
- run: npm run lint
- run: npx tsc
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}