Skip to content

Update CODEOWNERS file to frontend dev tooling #32

Update CODEOWNERS file to frontend dev tooling

Update CODEOWNERS file to frontend dev tooling #32

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["16.20.2"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: build_and_test
run: |
npm install
npm test
env:
CI: true