Skip to content

chore(deps): update all dependencies #250

chore(deps): update all dependencies

chore(deps): update all dependencies #250

Workflow file for this run

name: Build
on:
- pull_request
- workflow_dispatch
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- uses: actions/setup-node@v4
with:
node-version: 18
- uses: creyD/prettier_action@v4.3
with:
prettier_options: --write **/*.{ts,js,css,json,md}
commit_message: 'style: prettified it for you :zap:'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: yarn --pure-lockfile --ignore-engines
- run: yarn lint
- run: yarn build
- run: yarn test
env:
CI: true
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}