Skip to content
This repository has been archived by the owner on Jul 31, 2024. It is now read-only.

Merge pull request #61 from ArumetaM/announce_depreceated #55

Merge pull request #61 from ArumetaM/announce_depreceated

Merge pull request #61 from ArumetaM/announce_depreceated #55

Workflow file for this run

name: Analyze code
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npx eslint -c .eslintrc.js --ext .tsx --ext .ts src
- run: npx prettier --check 'src/**/*.{tsx,ts}'