Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(workflow): update pull-request #77

Merged
merged 5 commits into from
Jun 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 10 additions & 5 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,23 @@
name: Pull request

on: [pull_request]
on: [pull_request, pull_request_target]

permissions:
checks: write
contents: write

jobs:
continuous-integration:
name: Continuous Integration
runs-on: ubuntu-latest

steps:
- name: Git checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: '14'
node-version: '20'
registry-url: 'https://registry.npmjs.org'
- name: Install NPM dependencies
run: npm ci
Expand All @@ -21,7 +26,7 @@ jobs:
- name: Lint
run: npm run lint
- name: Lint
uses: wearerequired/lint-action@v1.10.0
uses: wearerequired/lint-action@v2.3.0
with:
continue_on_error: false
auto_fix: false
Expand Down
Loading