Add a build process for generating CSS files and instructions for how to use them #488
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: Tests | |
on: | |
pull_request: | |
branches: | |
- 4.x | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v3 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18.x' | |
- name: Enable corepack | |
run: | | |
corepack enable | |
corepack prepare [email protected] --activate | |
yarn set version 3.7.0 | |
- name: Install dependencies | |
run: yarn install --immutable | |
- name: Test unit | |
run: yarn run test:unit |