Skip to content

Commit

Permalink
Merge pull request atom#707 from atom/migrate-to-github-actions
Browse files Browse the repository at this point in the history
migrate to github actions
  • Loading branch information
sadick254 authored Jun 15, 2021
2 parents fe9a900 + 722146e commit d666a79
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 4 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: CI

on: [push]

env:
CI: true

jobs:
Build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-ruby@v1
with:
ruby-version: '2.6'
- uses: actions/setup-node@v2
with:
node-version: '7'
- name: Build
run: |
npm install
script/cibuild
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.4.2
2.6.7
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
source 'https://rubygems.org'
ruby '2.4.2'
ruby '2.6.7'

# essential
gem 'nanoc', '~> 4.7'
Expand Down
3 changes: 2 additions & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ GEM

PLATFORMS
ruby
x86_64-darwin-19

DEPENDENCIES
activesupport (~> 4.2)
Expand All @@ -128,4 +129,4 @@ RUBY VERSION
ruby 2.4.2p198

BUNDLED WITH
1.16.3
1.17.3
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ module.exports = {
}
```

Similarly, to consume a service, specify one or more [version _ranges_](https://docs.npmjs.com/misc/semver#ranges), each paired with the name of a method on the package's main module:
Similarly, to consume a service, specify one or more [version _ranges_](https://docs.npmjs.com/cli/v7/using-npm/semver#ranges), each paired with the name of a method on the package's main module:

```json
{
Expand Down

0 comments on commit d666a79

Please sign in to comment.