build(deps-dev): bump @types/node from 20.12.10 to 20.12.11 #6464
Workflow file for this run
This file contains 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: Test and Build | |
on: [push, pull_request] | |
permissions: | |
pull-requests: write | |
contents: write | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
- name: Install dependencies | |
run: npm install | |
env: | |
TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run linter | |
run: npm run lint | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
- name: Install dependencies | |
run: npm install | |
env: | |
TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run test with coverage | |
run: npm run coverage | |
- name: Codecov | |
uses: codecov/codecov-action@v2 | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "16" | |
- name: Install dependencies | |
run: npm install | |
env: | |
TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build project | |
run: npm run build | |
env: | |
CI: true | |
- name: Create artifact | |
uses: actions/upload-artifact@v1 | |
with: | |
name: build | |
path: dist/ | |
dependabot-automerge: | |
if: ${{ github.event_name == 'pull_request' && github.actor == 'dependabot[bot]' }} | |
needs: | |
- lint | |
- test | |
- build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Enable auto-merge for Dependabot PRs | |
run: gh pr merge --auto --merge "$PR_URL" | |
env: | |
PR_URL: ${{github.event.pull_request.html_url}} | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |