Skip to content

Bump semantic-release-gitmoji from 1.4.4 to 1.6.8 #116

Bump semantic-release-gitmoji from 1.4.4 to 1.6.8

Bump semantic-release-gitmoji from 1.4.4 to 1.6.8 #116

Workflow file for this run

name: Node CI
on:
push:
branches-ignore:
- master
jobs:
release:
name: Build and test
runs-on: ubuntu-18.04
if: "!contains(github.event.head_commit.message, '[skip ci]')"
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup Node.js
uses: actions/[email protected]
with:
node-version: 12
- name: Cache node modules
uses: actions/cache@v4
env:
cache-name: cache-node-modules
with:
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install dependencies
run: npm ci
- name: Build TypeScript
run: npm run build
- name: Run tests
run: npm run test