Skip to content

chore(deps): update actions/checkout action to v4.1.7 #6765

chore(deps): update actions/checkout action to v4.1.7

chore(deps): update actions/checkout action to v4.1.7 #6765

Workflow file for this run

name: Test
on:
pull_request:
workflow_dispatch:
merge_group:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest-16-core
strategy:
matrix:
node_version: [16, 18, 20]
env:
YARN_IGNORE_NODE: 1 # silence node 16 complaints
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
cache: yarn
- name: Install Task
run: curl -sL https://taskfile.dev/install.sh | sudo bash -s -- -b /usr/local/bin/
- name: Lint
run: task default lint
- name: Test
run: task default test