Skip to content

Update to latest actions #1070

Update to latest actions

Update to latest actions #1070

Workflow file for this run

name: Test
on:
push:
branches:
- main
- "dev**"
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '16'
- name: Build and test with lint
run: |
npm install
npm run test:lint
npm run build
npm run test:unit