build(deps): bump @octokit/request, @actions/github, @octokit/rest and actions-toolkit #4
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: build | |
| on: | |
| push: | |
| branches: | |
| - '*' | |
| tags: | |
| - '*' | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [18.x, 20.x] | |
| steps: | |
| - name: Initialize Energy Estimation | |
| uses: green-coding-berlin/eco-ci-energy-estimation@v1 | |
| with: | |
| task: start-measurement | |
| - name: "Checkout repository" | |
| uses: actions/checkout@v4 | |
| - name: Checkout Repo Measurement | |
| uses: green-coding-berlin/eco-ci-energy-estimation@v1 | |
| with: | |
| task: get-measurement | |
| label: 'repository checkout' | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Npm install | |
| run: npm ci | |
| - name: Npm build | |
| run: npm run build --if-present | |
| - name: Checkout Repo Measurement | |
| uses: green-coding-berlin/eco-ci-energy-estimation@v1 | |
| with: | |
| task: get-measurement | |
| label: 'Npm activities' | |
| - name: Show Energy Results | |
| uses: green-coding-berlin/eco-ci-energy-estimation@v1 | |
| with: | |
| task: display-results |