Skip to content

build(deps-dev): bump semantic-release from 24.0.0 to 24.1.2 #257

build(deps-dev): bump semantic-release from 24.0.0 to 24.1.2

build(deps-dev): bump semantic-release from 24.0.0 to 24.1.2 #257

Workflow file for this run

name: Test
# Run this job on all pushes and pull requests
# as well as tags with a semantic version
on:
push:
branches:
- '*'
pull_request: { }
workflow_dispatch:
# Cancel previous PR/branch runs when a new commit is pushed
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
lint-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 18.x, 20.x ]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Cache
uses: actions/cache@v4
with:
path: |
${{ github.workspace }}/.yarn
key: test-${{ runner.os }}-node${{ matrix.node-version }}-${{ hashFiles('yarn.lock') }}
- name: Enable corepack for Yarn
run: corepack enable
- name: install
run: yarn install
- name: lint
run: yarn run lint
- name: test
run: yarn run test