Skip to content

ci: add machine user token to allow pushing to protected branches #15

ci: add machine user token to allow pushing to protected branches

ci: add machine user token to allow pushing to protected branches #15

Workflow file for this run

name: Test
on:
push:
branches:
- main
tags:
- '*'
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
node-version: '18'
- name: Install dependencies
run: npm ci
- name: Run Tests
run: npm run test