mirror of
https://github.com/kou029w/intro-to-software-testing.git
synced 2025-01-18 16:08:00 +00:00
15 lines
303 B
YAML
15 lines
303 B
YAML
name: test
|
|
on:
|
|
push:
|
|
branches-ignore: [main]
|
|
jobs:
|
|
main:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2
|
|
with: { node-version: lts/*, cache: yarn }
|
|
- name: Build
|
|
run: |
|
|
yarn install
|
|
yarn build
|