Skip to content

chore(deps-dev): bump prettier from 2.8.8 to 3.0.0 #313

chore(deps-dev): bump prettier from 2.8.8 to 3.0.0

chore(deps-dev): bump prettier from 2.8.8 to 3.0.0 #313

Workflow file for this run

name: GitHub CI
on:
push:
branches: [master]
tags:
- '*'
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 'lts/*']
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: docker-compose up -d
- run: npm install
- run: npm test
# - name: Coveralls
# uses: coverallsapp/github-action@master
# with:
# github-token: ${{ SECRETS.GITHUB_TOKEN }}
# flag-name: run-${{ matrix.node-version }}
# parallel: true
# coveralls:
# needs: test
# runs-on: ubuntu-latest
# steps:
# - name: Coveralls Finished
# uses: coverallsapp/github-action@master
# with:
# github-token: ${{ SECRETS.GITHUB_TOKEN }}
# parallel-finished: true
release:
# Only release on push to master
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
# Waits for test jobs for each Node.js version to complete
needs: [test]
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: 'lts/*'
- run: npm install
- name: semantic-release
run: npm run semantic-release
env:
GH_TOKEN: ${{ secrets.DEPLOY_GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}