Skip to content

chore: bump eslint-plugin-react from 7.37.1 to 7.37.2 #611

chore: bump eslint-plugin-react from 7.37.1 to 7.37.2

chore: bump eslint-plugin-react from 7.37.1 to 7.37.2 #611

Workflow file for this run

name: ci
on: [push]
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['12', '14', '16']
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
registry-url: "https://registry.npmjs.org"
- name: Install
run: yarn --frozen-lockfile
- name: Lint
run: yarn lint
- name: Test
run: yarn test
- name: Build
run: yarn build
- name: NPM Publish
uses: JS-DevTools/npm-publish@v1
if: github.ref == 'refs/heads/master' && matrix.node-version == '14'
with:
token: ${{ secrets.NPM_TOKEN }}