Skip to content

build(deps): bump braces from 3.0.2 to 3.0.3 (#179) #148

build(deps): bump braces from 3.0.2 to 3.0.3 (#179)

build(deps): bump braces from 3.0.2 to 3.0.3 (#179) #148

Workflow file for this run

name: push-master
on:
push:
branches:
- master
jobs:
build_test_publish:
name: Build, test, and publish unstable release
if: "! contains(github.event.head_commit.message, 'chore(release): publish')"
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
registry-url: "https://registry.npmjs.org"
- run: yarn install --frozen-lockfile
- run: yarn build:release
- run: yarn test
- run: git config user.name "Mattr CI"
- run: git config user.email "[email protected]"
- run: npm whoami
env:
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_TOKEN }}
- run: yarn publish:unstable
env:
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_TOKEN }}
- name: Report Coverage
uses: codecov/codecov-action@29386c70ef20e286228c72b668a06fd0e8399192 # [email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}