Bump rollup from 2.79.1 to 2.79.2 #53
Workflow file for this run
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
name: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
env: | |
NODE_VERSION: '16' | |
jobs: | |
full-code-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Full-check repository | |
uses: actions/checkout@v3 | |
- uses: actions/[email protected] | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
check-latest: true | |
- name: Install dependecies | |
run: | | |
yarn install | |
- name: Build TypeScript | |
run: | | |
yarn dist | |
- name: Build React | |
env: | |
CI: false | |
run: | | |
yarn build | |
- name: Run tests | |
run: | | |
yarn test |