chore(deps-dev): bump rollup from 4.53.3 to 4.53.4 #658
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: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| Test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v6 | |
| - name: Install Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: '*' | |
| - name: Install Dependencies | |
| run: npm ci | |
| - name: Run Tests π©π½βπ» | |
| run: npm run test | |
| TestTypes: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v6 | |
| - name: Install Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: '*' | |
| - name: Install Dependencies | |
| run: npm ci | |
| - name: Run Types Tests π©π½βπ» | |
| run: npm run test:types | |
| Coverage: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v6 | |
| - name: Install Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 'lts/*' | |
| - name: Install Dependencies | |
| run: npm ci | |
| - name: Run Tests π©π½βπ» | |
| run: npm run test:cover | |
| Lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v6 | |
| - name: Install Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 'lts/*' | |
| - name: Install Dependencies | |
| run: npm ci | |
| - name: Lint β¨ | |
| run: npm run lint | |
| Build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v6 | |
| - name: Install Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 'lts/*' | |
| - name: Install Dependencies | |
| run: npm ci | |
| - name: Build ποΈ | |
| run: npm run build | |
| Release: | |
| needs: [Test, TestTypes, Coverage, Lint, Build] | |
| if: | | |
| github.ref == 'refs/heads/main' && | |
| github.event.repository.fork == false | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v6 | |
| - name: Install Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 'lts/*' | |
| - name: Install Dependencies | |
| run: npm ci | |
| - name: Build ποΈ | |
| run: | | |
| npm run build | |
| if ! git diff --quiet; then | |
| git config --global user.email "<>" | |
| git config --global user.name "CI Build" | |
| git commit -am "ποΈ build [skip ci]" | |
| fi | |
| - name: Release π | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| run: npx semantic-release |