mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
1fb5166376
Github issue / Community forum post (link here to close automatically): #7423 This PR updates reference passed to the `checkout` action by the `cy-pull-request.ym`. This should fix three existing issues: - Failing unit tests for external pull requests - Failing e2e tests for external PRs - Passing empty `ref` to `lint` job which makes linter run on a wrong branch
72 lines
1.7 KiB
YAML
72 lines
1.7 KiB
YAML
name: Build, unit test and lint branch
|
|
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
install:
|
|
name: Install & Build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3.5.3
|
|
with:
|
|
repository: n8n-io/n8n
|
|
ref: refs/pull/${{ github.event.pull_request.number }}/merge
|
|
|
|
- uses: pnpm/action-setup@v2.4.0
|
|
|
|
- name: Use Node.js 18
|
|
uses: actions/setup-node@v3.7.0
|
|
with:
|
|
node-version: 18.x
|
|
cache: pnpm
|
|
|
|
- name: Install dependencies
|
|
run: pnpm install --frozen-lockfile
|
|
|
|
- name: Build
|
|
run: pnpm build
|
|
|
|
- name: Cache build artifacts
|
|
uses: actions/cache/save@v3.3.1
|
|
with:
|
|
path: ./packages/**/dist
|
|
key: ${{ github.sha }}-base:18-test-lint
|
|
|
|
unit-test:
|
|
name: Unit tests
|
|
uses: ./.github/workflows/units-tests-reusable.yml
|
|
needs: install
|
|
with:
|
|
ref: refs/pull/${{ github.event.pull_request.number }}/merge
|
|
cacheKey: ${{ github.sha }}-base:18-test-lint
|
|
|
|
lint:
|
|
name: Lint changes
|
|
runs-on: ubuntu-latest
|
|
needs: install
|
|
steps:
|
|
- uses: actions/checkout@v3.5.3
|
|
with:
|
|
repository: n8n-io/n8n
|
|
ref: refs/pull/${{ github.event.pull_request.number }}/merge
|
|
|
|
- uses: pnpm/action-setup@v2.4.0
|
|
|
|
- name: Use Node.js 18
|
|
uses: actions/setup-node@v3.7.0
|
|
with:
|
|
node-version: 18.x
|
|
cache: pnpm
|
|
|
|
- name: Install dependencies
|
|
run: pnpm install --frozen-lockfile
|
|
|
|
- name: Restore cached build artifacts
|
|
uses: actions/cache/restore@v3.3.1
|
|
with:
|
|
path: ./packages/**/dist
|
|
key: ${{ github.sha }}-base:18-test-lint
|
|
|
|
- name: Lint
|
|
run: pnpm lint
|