Skip to content

Update JS-DevTools/npm-publish action to v3 (#71) #10

Update JS-DevTools/npm-publish action to v3 (#71)

Update JS-DevTools/npm-publish action to v3 (#71) #10

Workflow file for this run

name: Testing
on:
push:
branches:
- feature/*
- hotfix/*
- develop
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --frozen-lockfile
- run: yarn build
- run: yarn test
- run: yarn lint