fix(deps): update nuxt typescript core packages (major) #462
  
    
      This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| api: [options, class, composition] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Run initializing script | |
| run: COMPONENT_API=${{ matrix.api }} ./init.sh | |
| - run: npm install | |
| - name: Run lint | |
| run: npm run lint | |
| - name: Run static site generation | |
| run: npm run generate |