Skip to content

clean up

clean up #314

Workflow file for this run

name: CI
on:
push:
branches:
- '**'
jobs:
build:
runs-on: ubuntu-latest
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: giphy-web
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
env:
LIBGL_ALWAYS_SOFTWARE: 1
with:
node-version: 22.x
cache: 'yarn'
- run: yarn install --immutable
- name: Build
run: yarn run build
- name: Lint and Test
run: yarn run lint && yarn run test
- name: Cypress
uses: cypress-io/github-action@v6
with:
record: true
component: true
working-directory: packages/react-components
env:
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
- name: License Check
run: yarn run check-licenses
env:
LICENSE_PROJECT_LOCATION: ${{ secrets.LICENSE_PROJECT_LOCATION }}
LICENSE_CATEGORIES_LOCATION: ${{ secrets.LICENSE_CATEGORIES_V2_LOCATION }}