Skip to content

chore(deps): update all dependencies #258

chore(deps): update all dependencies

chore(deps): update all dependencies #258

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: lts/*
- uses: creyD/[email protected]
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
- run: yarn lint
- run: yarn build
- run: yarn test
env:
CI: true
- uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}