Skip to content

Commit

Permalink
chore(ci): Added PR test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
seebeen committed Aug 22, 2023
1 parent 4d0fc90 commit 541dc03
Show file tree
Hide file tree
Showing 4 changed files with 504 additions and 492 deletions.
56 changes: 56 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
name: Test

on:
push:
branches:
- master
# renovate/** branches are generated by https://github.com/apps/renovate
- renovate/**

pull_request:
types:
- opened
- synchronize

permissions:
contents: read # to fetch code (actions/checkout)

jobs:
test_matrix:
strategy:
matrix:
node-version:
- 18.0.0
- 19

runs-on: ubuntu-latest
timeout-minutes: 10

steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3
- run: git config --global user.name github-actions
- run: git config --global user.email github-actions@github.com
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm clean-install
- name: Ensure dependencies are compatible with the version of node
run: npx ls-engines
- run: npm run test

# separate job to set as required in branch protection,
# as the build names above change each time Node versions change
test:
runs-on: ubuntu-latest
needs: test_matrix
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3
- uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3
with:
node-version: lts/*
cache: npm
- run: npm clean-install
- run: npm audit signatures
- run: npm run lint
2 changes: 1 addition & 1 deletion lib/publish.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import fs from 'fs-extra';
import { PublishContext } from 'semantic-release';
import { PluginConfig } from './classes/plugin-config.class.js';
import { transformAndValidate } from 'class-transformer-validator';
import execa from 'execa';
import { execa } from 'execa';
import getError from './utils/get-error.js';

export async function publish(
Expand Down
Loading

0 comments on commit 541dc03

Please sign in to comment.