Skip to content

Updated README file with updated importmap instructions and other fixes #176

Updated README file with updated importmap instructions and other fixes

Updated README file with updated importmap instructions and other fixes #176

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
tests:
strategy:
matrix:
node:
- 20.x
runs-on: ubuntu-latest
name: Node.js ${{ matrix.node }}
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install
run: |
yarn
- name: Tests
run: |
yarn format-check