2021-08-23 22:26:06 +09:00

17 lines
355 B
YAML

name: build
on: [push]
jobs:
Explore-GitHub-Actions:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14'
cache: 'yarn'
- run: |
yarn
- name: List files in the repository
run: |
ls ${{ github.workspace }}