Add size comparison to the 2 most popular react trees on npm #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPDX-FileCopyrightText: TNG Technology Consulting GmbH <https://www.tngtech.com> | |
# SPDX-FileCopyrightText: Leslie Lazzarino <[email protected]> | |
# SPDX-FileCopyrightText: Benedikt Richter <[email protected]> | |
# | |
# SPDX-License-Identifier: Apache-2.0 | |
name: Test | |
on: | |
push: | |
pull_request: | |
types: [opened, reopened, synchronize] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v3 | |
- name: Install Node.js and yarn | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- run: yarn setup | |
- run: yarn lint | |
- run: yarn test |