Update dependency typescript to v5 #2118
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
name: Node CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
- name: Install npm dependencies | |
run: npm ci | |
- name: Run tests | |
run: npm test -- --ci | |
- name: Build storybook | |
run: npm run storybook:build | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v5.0.7 | |
with: | |
token: ${{secrets.CODECOV_TOKEN}} |