This repository has been archived by the owner on Apr 2, 2024. It is now read-only.
Bump es5-ext from 0.10.45 to 0.10.63 #9
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
# Build config based on https://github.com/atom/ci | |
name: CI | |
on: [push] | |
env: | |
CI: true | |
jobs: | |
Test: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
channel: ["v1.55.0"] # This is the last supported version with no deprecation errors. TODO update to support [stable, beta] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: UziTech/action-setup-atom@v2 | |
with: | |
version: ${{ matrix.channel }} | |
- name: Install dependencies | |
run: apm install | |
- name: Run tests | |
run: atom --test spec |