-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into 410-storybook-number-input
- Loading branch information
Showing
87 changed files
with
6,280 additions
and
1,952 deletions.
There are no files selected for viewing
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
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 |
Oops, something went wrong.