Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Git Actions - Settings #113

Open
wants to merge 45 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
8be5d77
create a epub
pedro-leao-apontador Nov 11, 2017
b67838f
fix: package.json & .snyk to reduce vulnerabilities
snyk-bot Oct 17, 2019
43c2bae
Merge pull request #1 from pedrorobsonleao/snyk-fix-369edaf8f14d84a42…
pedrorobsonleao Oct 17, 2019
9b6d681
fix: package.json & .snyk to reduce vulnerabilities
snyk-bot Oct 17, 2019
2a4f7f3
Merge pull request #2 from pedrorobsonleao/snyk-fix-bffad8d638c1c8bf6…
pedrorobsonleao Oct 17, 2019
9190489
Update oquee.md
augustowebd Dec 3, 2019
b2fae75
Update comandos_uteis.md
youhide Dec 16, 2019
45f8e6b
fix for gitbook parser
youhide Dec 16, 2019
e202776
add macos .DS_Store to ignore
youhide Dec 16, 2019
86de2d5
update package.json
youhide Dec 16, 2019
ab4c90d
Create nodejs.yml
youhide Dec 16, 2019
e8afe03
Update nodejs.yml
youhide Dec 16, 2019
e9acab9
Revert "Update nodejs.yml"
youhide Dec 16, 2019
bd214be
Revert "Create nodejs.yml"
youhide Dec 16, 2019
860b3ae
We need more CI tools
gomex Jul 11, 2020
2fe9015
Update construa-lance-execute.md
braieralves Jul 15, 2020
e722622
Update admin.md
braieralves Jul 15, 2020
28e2685
Update armazenamento.md
braieralves Jul 15, 2020
382c556
Update base_de_codigo.txt
braieralves Jul 15, 2020
572d488
Update base_de_codigo.txt
braieralves Jul 15, 2020
fd62921
Acrescentando destaque em trecho do texto
daniel-augusto Jul 22, 2020
c55d376
Merge pull request #104 from daniel-augusto/patch-1
somatorio Jul 23, 2020
4926325
Merge pull request #101 from braieralves/master
somatorio Jul 28, 2020
7cea573
Merge pull request #99 from gomex/Add-markdownlint
somatorio Jul 28, 2020
0f53f11
Merge branch 'main' into patch-1
augustowebd Oct 9, 2020
4c07db5
Merge pull request #87 from augustowebd/patch-1
somatorio Oct 9, 2020
fe31209
Merge pull request #100 from braieralves/patch-1
somatorio Dec 15, 2020
b6a8774
fix: package.json & .snyk to reduce vulnerabilities
snyk-bot Feb 3, 2021
960f921
Merge pull request #5 from pedrorobsonleao/snyk-fix-9ada946eeb6993f58…
pedrorobsonleao Feb 3, 2021
78e58bd
fix: change pandoc parameter
pedrorobsonleao Sep 23, 2021
62fc812
fix: rebase
pedrorobsonleao Sep 23, 2021
20c7766
Merge branch 'gomex:master' into master
pedrorobsonleao Jul 6, 2022
4a20e52
fix: package.json to reduce vulnerabilities
snyk-bot Dec 4, 2022
fe7bd59
Merge pull request #8 from pedrorobsonleao/snyk-fix-d3ac3e73d57c7e938…
pedrorobsonleao Mar 21, 2023
23c5ac1
Merge pull request #90 from youhide/master
somatorio Mar 21, 2023
c4303c3
Merge branch 'gomex:master' into master
pedrorobsonleao May 13, 2024
9140371
Create makefile.yml
pedrorobsonleao May 13, 2024
f2df02f
Update makefile.yml
pedrorobsonleao May 13, 2024
3ded582
Update makefile.yml
pedrorobsonleao May 13, 2024
29eb083
Update makefile.yml
pedrorobsonleao May 13, 2024
957e6d5
Update Makefile
pedrorobsonleao May 13, 2024
edc7bed
Update Makefile
pedrorobsonleao May 13, 2024
b82cbdc
Update makefile.yml
pedrorobsonleao May 13, 2024
0c03718
Update Makefile
pedrorobsonleao May 13, 2024
c7f9e59
Merge branch 'main' into master
somatorio May 13, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Create nodejs.yml
lets start using github actions
  • Loading branch information
youhide authored Dec 16, 2019
commit ab4c90d9908b6b598c6f6f0631c23c5f9ea0da42
25 changes: 25 additions & 0 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Node CI

on: [push]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [10.x]

steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and deploy
run: |
npm ci
npm run deploy
env:
CI: true