Skip to content

Commit

Permalink
Merge pull request #2 from CodinGame/improve-diff
Browse files Browse the repository at this point in the history
Add timeout on diff computation
  • Loading branch information
CGNonofr authored May 6, 2022
2 parents 6211952 + 984ee56 commit 4853fc2
Show file tree
Hide file tree
Showing 6 changed files with 3,159 additions and 4,876 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Release

on:
push:
branches: [main]

jobs:
release:
name: Release
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: 16.x
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release
Loading

0 comments on commit 4853fc2

Please sign in to comment.