Skip to content

Release new major version: v24.0.0 #848

Release new major version: v24.0.0

Release new major version: v24.0.0 #848

Workflow file for this run

name: "CI_02: Code tests"
on:
pull_request:
paths:
- "src/**.js"
- "src/**.ts"
- "src/**.tsx"
- "index.ts"
- "**.scss"
- package.json
- yarn.lock
jobs:
test-code:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- name: Test using Node.js
uses: actions/setup-node@main
with:
node-version: "18"
- run: yarn install
- run: yarn compile
- run: yarn compile-scss
- run: yarn test:ci