Skip to content

Bump decode-uri-component from 0.2.0 to 0.2.2 (#49) #21

Bump decode-uri-component from 0.2.0 to 0.2.2 (#49)

Bump decode-uri-component from 0.2.0 to 0.2.2 (#49) #21

Workflow file for this run

name: Build and Test Library Code
on: push
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