1
0
Fork 0
mirror of https://github.com/actions/checkout.git synced 2025-04-02 22:40:06 +02:00
This commit is contained in:
Oscar Dominguez 2021-11-03 03:07:43 -05:00 committed by GitHub
commit d02cbbc8d7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,7 @@
name: Build and Test name: Build and Test
on: on:
pull_request: pull_request: null
push: push:
branches: branches:
- main - main
@ -11,9 +11,10 @@ jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/setup-node@v1 - uses: actions/setup-node@v2
with: with:
node-version: 12.x node-version: 12.x
cache: npm
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- run: npm ci - run: npm ci
- run: npm run build - run: npm run build