Skip to content

Fixes an issue where keyframes are declared inside a namespaced StyleSheetManager #557

Fixes an issue where keyframes are declared inside a namespaced StyleSheetManager

Fixes an issue where keyframes are declared inside a namespaced StyleSheetManager #557

Workflow file for this run

name: test
on:
push:
branches:
- "main"
pull_request:
types: [opened, synchronize, reopened]
permissions:
contents: read # to fetch code (actions/checkout)
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 18
cache: "yarn"
- run: yarn --pure-lockfile
- name: Build
run: yarn build
env:
BUNDLEWATCH_GITHUB_TOKEN: ${{ secrets.BUNDLEWATCH_GITHUB_TOKEN }}
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [16, 18]
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: "yarn"
- run: yarn --pure-lockfile
- name: Jest
run: yarn test