Skip to content

Commit

Permalink
Merge pull request #4 from goodcodeus/GOOD-98/Updates-deps
Browse files Browse the repository at this point in the history
GOOD-98: Update deps
  • Loading branch information
amcdnl authored Nov 28, 2023
2 parents 4525849 + cd571d3 commit 7266063
Show file tree
Hide file tree
Showing 4 changed files with 5,393 additions and 6,127 deletions.
50 changes: 25 additions & 25 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: build

on:
pull_request:
branches: [ main ]
branches: [main]

jobs:
build:
Expand All @@ -13,34 +13,34 @@ jobs:
cancel-in-progress: true

steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/checkout@v2
with:
fetch-depth: 0

- uses: actions/setup-node@v2
with:
node-version: "18"
cache: "yarn"
- uses: actions/setup-node@v2
with:
node-version: '18'
cache: 'npm'

- name: Install
run: yarn install --frozen-lockfile --non-interactive
- name: Install
run: npm install

- name: Lint
run: yarn lint
- name: Lint
run: npm run lint

- name: Build App
run: yarn build
env:
NODE_OPTIONS: --max_old_space_size=16384
- name: Build App
run: npm run build
env:
NODE_OPTIONS: --max_old_space_size=16384

- name: Build Storybook
run: yarn build-storybook
env:
NODE_OPTIONS: --max_old_space_size=16384
- name: Build Storybook
run: npm run build-storybook
env:
NODE_OPTIONS: --max_old_space_size=16384

- name: Test
run: yarn test:coverage
- name: Test
run: npm run test:coverage

- name: Report Coverage
if: always()
uses: davelosert/vitest-coverage-report-action@v1
- name: Report Coverage
if: always()
uses: davelosert/vitest-coverage-report-action@v1
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v18.12.0
Loading

0 comments on commit 7266063

Please sign in to comment.