This repository was archived by the owner on Oct 1, 2025. It is now read-only.
  
  
  
  
ci: use node 18.x #194
Workflow file for this run
  
    
      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: | |
| jobs: | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: 18.x | |
| - name: Clean Install | |
| run: npm ci | |
| - name: Run lint | |
| run: npm run lint | |
| - name: Run test | |
| run: npm run test | |
| - name: Run build | |
| run: npm run build | |
| - name: Release | |
| run: npx [email protected] --branches master | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |