Skip to content

Commit

Permalink
Update the npm version used in GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicolapps committed Dec 9, 2024
1 parent 778c49e commit d1e27a2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,10 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- uses: bahmutov/npm-install@v1
node-version: 22
cache: 'npm'
- name: Install NPM dependencies
run: npm ci
- name: Build Storybook 🔧
run: STORYBOOK_MAPKIT_JS_TOKEN="${{ secrets.MAPKIT_JS_TOKEN }}" npm run build-storybook
shell: bash
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: bahmutov/npm-install@v1
- uses: actions/setup-node@v3
with:
node-version: 22
cache: 'npm'
- name: Install NPM dependencies
run: npm ci
- name: Check EditorConfig
run: npx editorconfig-checker
shell: bash
Expand Down

0 comments on commit d1e27a2

Please sign in to comment.