Skip to content

optimize highestOne256 (#24) #10

optimize highestOne256 (#24)

optimize highestOne256 (#24) #10

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
node:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 20.x, 21.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm test
deno:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
# - run: deno run --quiet --allow-read --allow-env --allow-net --allow-hrtime ./test.mjs
- run: deno run --quiet ./test.mjs
bun:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: curl -fsSL https://bun.sh/install | bash
- run: /home/runner/.bun/bin/bun ./test.mjs