feat: Change color
names primary
, secondary
, tertiary
to first
, second
, third
#46
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
# Runs conventional commit check on PR | |
name: Checks storefront | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- 'storefront/**' | |
push: | |
branches: | |
- main | |
paths: | |
- 'storefront/**' | |
jobs: | |
checks: | |
name: Builds, lints and tests code | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Use node 20 and yarn cache | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
cache: 'yarn' | |
- name: Install dependencies | |
run: yarn install --immutable | |
- name: Build packages | |
run: yarn build | |
- name: Build storefront | |
run: yarn build:storefront | |
- name: Lint Code | |
run: yarn lint ./storefront | |
- name: Lint CSS | |
run: yarn lint-style ./storefront/**/*.css | |
- name: Test | |
run: yarn test |