Skip to content

build(deps): bump flatted from 3.3.1 to 3.4.2 #75

build(deps): bump flatted from 3.3.1 to 3.4.2

build(deps): bump flatted from 3.3.1 to 3.4.2 #75

Workflow file for this run

name: node-tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: node-tests
runs-on: ubuntu-latest
strategy:
matrix:
node: [ "20.9.0" ]
steps:
- name: Set up node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
id: node
- name: Check out code into the node directory
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies
run: yarn
- name: lint
run: yarn lint
- name: Test
run: yarn test:coverage
release:
name: semantic-release
runs-on: ubuntu-latest
needs: [ build ]
strategy:
matrix:
node: [ "20.9.0" ]
steps:
- name: Set up node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
id: node
- name: Check out code into the node directory
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: install husky
run: yarn add -D husky
- name: create .npmrc file
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
echo -e "@tempmee:registry=https://npm.pkg.github.com\n//npm.pkg.github.com/:_authToken=${GITHUB_TOKEN}" > .npmrc
- name: cat .npmrc
run: cat .npmrc
- name: release
uses: cycjimmy/semantic-release-action@v4
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
extra_plugins: |
@semantic-release/git@10.0.1
@semantic-release/exec@6.0.2
@semantic-release/changelog@6.0.1
@semantic-release/npm@11.0.2