Skip to content

chore(deps): bump undici from 6.24.1 to 6.28.0 (#162) #488

chore(deps): bump undici from 6.24.1 to 6.28.0 (#162)

chore(deps): bump undici from 6.24.1 to 6.28.0 (#162) #488

Workflow file for this run

name: CI
on:
schedule:
- cron: '0 22 * * 3'
pull_request:
branches:
- main
push:
branches:
- main
permissions:
contents: read
jobs:
test-typescript:
name: TypeScript Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Setup Node.js
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: 20
cache: yarn
- name: Install Dependencies
run: yarn install --immutable
- name: Check Format
run: yarn format:check
- name: Lint
run: yarn lint
- name: Test
run: yarn ci-test
release:
name: release
runs-on: ubuntu-latest
needs: test-typescript
if: github.ref == 'refs/heads/main'
permissions:
contents: write # for making github release
pull-requests: write # for commenting release version
issues: write # for commenting release version
steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Run semantic release
uses: electron/semantic-trusted-release@03517840010ba30fe5264f4875f4cff066b658d1 # v1.1.0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}