Implement automatic achievements #12412
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: Resources Code Style | |
| on: [pull_request, workflow_dispatch] | |
| jobs: | |
| # Test Resources | |
| test-resources: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install modules | |
| run: npm install | |
| - name: Run lint check | |
| run: npm run test | |
| - name: Run unit test | |
| run: npm run test:js |