Skip to content

Convert JavaScript codebase and tests to TypeScript with strict typing #1

Convert JavaScript codebase and tests to TypeScript with strict typing

Convert JavaScript codebase and tests to TypeScript with strict typing #1

Workflow file for this run

name: ci
on:
push:
branches:
- master
tags-ignore:
- '*'
pull_request:
branches:
- master
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Node ${{ matrix.node }} / ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
node:
- '18'
steps:
- name: Install Setuptools for Python
run: pip3 install setuptools
- name: Check out Git repository
uses: actions/checkout@v3
- name: Setup PNPM
uses: pnpm/action-setup@v2.2.2
with:
version: 8.6.3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- run: echo "127.0.0.1 airtap.local" | sudo tee -a /etc/hosts
- run: pnpm test
env:
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}