Skip to content

refactor: add react import to all jsx containing files (#169) #239

refactor: add react import to all jsx containing files (#169)

refactor: add react import to all jsx containing files (#169) #239

Workflow file for this run

name: CI/CD Pipeline
on:
push:
branches: [master,v2]
pull_request:
branches: [master,v2]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.14.0]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Linting
run: yarn run lint
- name: Run the tests
run: yarn test
- name: Build
run: yarn build