Skip to content

chore(deps): bump tar from 7.5.16 to 7.5.22 #861

chore(deps): bump tar from 7.5.16 to 7.5.22

chore(deps): bump tar from 7.5.16 to 7.5.22 #861

Workflow file for this run

# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Test
on: ["push", "pull_request"]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
with:
persist-credentials: false
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: 24
- name: yarn install
run: yarn --frozen-lockfile
- name: test
run: yarn test
- name: coverage test
run: yarn coverage
- name: perf test
run: yarn test:perf
- uses: coverallsapp/github-action@8cbef1dea373ebce56de0a14c68d6267baa10b44 # v1.1.2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}