Skip to content

Migrate to Github Action release workflow with NPM provenance support #266

Migrate to Github Action release workflow with NPM provenance support

Migrate to Github Action release workflow with NPM provenance support #266

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Setup node and yarn
uses: actions/setup-node@v3
with:
cache: npm
- name: NPM install
run: npm install --frozen-lockfile
shell: bash
- run: npm test