docs: fix typo in README (#162) #445
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
branches: [main] | |
push: | |
branches: [main] | |
tags: | |
- '*' | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 10 | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
steps: | |
- run: git config --global core.autocrlf false | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- run: (cd packages/shim-deno/third_party/deno; git submodule update --init --depth=1 test_util/std) | |
shell: bash | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '18' | |
registry-url: 'https://registry.npmjs.org' | |
- uses: denoland/setup-deno@v1 | |
with: | |
deno-version: 1.38.1 | |
- run: deno lint | |
if: matrix.os == 'ubuntu-latest' | |
- run: deno fmt --check | |
if: matrix.os == 'ubuntu-latest' | |
- run: npm -v | |
- run: npm ci --ignore-scripts | |
- run: npm run --silent build --workspaces | |
- run: npm run --silent test --workspaces | |
- name: Try running on Node 14 | |
run: cd packages/shim-deno && npx node@14 dist/index.js | |
if: matrix.os == 'ubuntu-latest' | |
- run: cd packages/shim-deno && tools/untested.sh | |
if: matrix.os == 'ubuntu-latest' |