feat!: migrate to esm, update dependencies #65
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: | |
| branches: | |
| - main | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| token: ${{ secrets.CI_GITHUB_TOKEN }} | |
| fetch-depth: 0 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| version: 24 | |
| always-auth: true | |
| registry-url: https://registry.npmjs.org | |
| - name: Setup Git | |
| run: | | |
| git config --local user.name "Artem Zakharchenko" | |
| git config --local user.email "kettanaito@gmail.com" | |
| - run: npm ci | |
| - name: Unit Tests | |
| run: npm test | |
| - name: Compliance Tests | |
| run: npm run test:compliance | |
| - name: Build | |
| run: npm run build | |
| - name: Lint | |
| run: npm run lint | |
| - name: Release | |
| if: github.ref == 'refs/heads/main' | |
| run: npm run release | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.CI_GITHUB_TOKEN }} | |
| NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |