Skip to content

build(deps): Bump serialize-javascript from 6.0.1 to 6.0.2 #97

build(deps): Bump serialize-javascript from 6.0.1 to 6.0.2

build(deps): Bump serialize-javascript from 6.0.1 to 6.0.2 #97

Workflow file for this run

name: Build and Test Library Code
on:
push:
pull_request:
jobs:
run-checks:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 16.14.2
cache: 'yarn'
- name: Install dependencies
run: |
yarn install --frozen-lockfile
- name: Compile
run: yarn compile
- name: Lint
run: yarn lint
- name: Test
run: yarn test
- name: Prettier formatting check
run: yarn prettier:check