Skip to content

Commit

Permalink
Merge branch 'develop' into 410-storybook-number-input
Browse files Browse the repository at this point in the history
  • Loading branch information
bar-tay committed Nov 27, 2023
2 parents 4236d67 + 7f340ae commit 97fdc80
Show file tree
Hide file tree
Showing 87 changed files with 6,280 additions and 1,952 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Compile

on: [push, pull_request]

jobs:
snapshot-test:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18.x'

- name: Get node version
id: node
run: |
echo "::set-output name=version::$(node -v)"
- name: Get node_modules cache
uses: actions/[email protected]
id: node_modules
with:
path: |
**/node_modules
key: ${{ runner.os }}-node_modules-${{ hashFiles('**/yarn.lock') }}-${{ steps.node.outputs.version }}

- name: Install modules
run: npm ci

- name: Generate tokens
run: npm run tokens:generate

- name: Run Compile
run: npm run compile
Loading

0 comments on commit 97fdc80

Please sign in to comment.